作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个开源 Xamarin 项目,它在 AndroidManifest.xml
中有一个 API key 。文件。目前,我已通过 .gitignore
处理了该问题。 -ing AndroidManifest.xml
,但这是一个困惑的解决方案,它阻止我使用像 AppCenter 这样的自动构建环境。
可以使用 Gradle 文件完成:https://developer.android.com/studio/build/manifest-build-variables
但是,在 Xamarin 中,我们无法访问 Gradle。我在 Xamarin 项目中找不到这样做的方法。我错过了一些明显的东西吗?
最佳答案
不幸的是,在读取 AndroidManifest.xml(或 iOS 版本的 Info.plist)时,环境变量不可用。
我发现更改这些文件中的配置值(包括 com 标识符)的一种方法是通过 Project Options -> Build -> Custom Commands 运行预构建脚本。
实际的脚本可能非常简单。就像是:
#!/bin/sh
cat ./manifest/prod/AndroidManifest.xml > Properties/AndroidManifest.xml
<CustomCommands>
<CustomCommands>
<Command>
<type>BeforeBuild</type>
<command>set_manifest_dev.sh</command>
<workingdir>${ProjectDir}</workingdir>
</Command>
</CustomCommands>
</CustomCommands>
关于Xamarin:有没有办法将环境变量注入(inject)到 AndroidManifest.xml 文件中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54006515/
我是一名优秀的程序员,十分优秀!