使用 phonegap 构建服务的插件 plugin.google.maps 在 ios 上不起作用
Posted
技术标签:
【中文标题】使用 phonegap 构建服务的插件 plugin.google.maps 在 ios 上不起作用【英文标题】:plugin plugin.google.maps using phonegap build service doesnt work on ios 【发布时间】:2015-05-25 09:43:31 【问题描述】:我有一个使用插件 plugin.google.maps (https://github.com/wf9a5m75/phonegap-googlemaps-plugin) 的小项目。
另外,我使用 phonegap buid 服务,而不是 CLI。
在 config.xml 文件中我有代码
<gap:plugin name="plugin.google.maps" source="plugins.cordova.io" version="~1.2.4">
<param name="API_KEY_FOR_android" value="xxx" />
<param name="API_KEY_FOR_ios" value="xxx" />
</gap:plugin>
Android apk 的工作就像一个魅力,但在 ios 设备上我收到了消息
"未设置API密钥。 请将platforms/ios/.../...Info.plist 中的“API_KEY_FOR_IOS”替换为您的API 密钥。”
有人知道我如何使用 phonegap 构建服务解决这个问题吗?
【问题讨论】:
嗨,很抱歉在此处添加此评论,但我正在尝试在我的 phonegap 构建应用程序上使用此插件,但 phonegap-build 编译器失败,您可以帮助我使用该插件的示例应用程序?我正在尝试在 android 上编译。 【参考方案1】:尽管这应该可以工作
(https://github.com/wf9a5m75/phonegap-googlemaps-plugin/issues/411#issuecomment-75452290)
简而言之,几天后,我认为我必须覆盖 plist 键“Google Maps API 密钥”的 ios 属性列表的说明。
所以,我在 config.xml 中插入了代码:
<gap:config-file platform="ios" parent="Google Maps API Key" mode="replace">
<string>xxx</string>
</gap:config-file>
其中 xxx 是 iOS 版 Google Maps API 密钥
http://docs.build.phonegap.com/en_US/configuring_config_file_element.md.html
【讨论】:
以上是关于使用 phonegap 构建服务的插件 plugin.google.maps 在 ios 上不起作用的主要内容,如果未能解决你的问题,请参考以下文章