问题描述
是否可以用来自单独文件的字符串/值替换Xamarin.Forms Google Maps API中的 API密钥?
AndroidManifest.xml中的类似内容
<Meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="@string/apikey" />
文件位于Resources > values > key.xml
中,看起来像这样
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<string name="apikey">abcdefghijklmnopqrstuvwxyz</string>
</resources>
我已经尝试了上述解决方案,但它不起作用。
我要这样做的原因是我不想将我的私钥提交给Github,但是我愿意希望存储库是公开的。这样,我可以从提交中排除key.xml文件,而不是整个AndroidManifest.xml文件。
我还意识到您可以将AndroidManifest.xml
中的这一行替换为AssemblyInfo.cs
中的这一行代码
[assembly: MetaData("com.google.android.maps.v2.API_KEY",Value = "abcdefghijklmnopqrstuvwxyz")]
但是我仍然找不到有关如何用资源文件中的变量替换字符串的任何信息。
解决方法
因此,我发现this git使用以下方法。
在Constants.cs
public static class Constants
{
public const string GoogleMapsApiKey= "--Add your google map api key here--";
}
在Android Folder > MainApplication.cs
#if DEBUG
[Application(Debuggable = true)]
#else
[Application(Debuggable = false)]
#endif
[MetaData("com.google.android.maps.v2.API_KEY",Value = Constants.GoogleMapsApiKey)]