Phonegap构建config.xml

时间:2017-04-07 09:50:00

标签: phonegap-build

我有一个使用PhoneGap构建的混合应用程序。如果我使用Android Studio / XCode编译应用程序一切正常,但我想使用PhoneGap Build。在我的Android设备上启动使用PhoneGap构建的应用时,它无法正常工作。这似乎是一个许可问题。我的应用需要互联网连接和访问位置服务。我不知道如何在我的config.xml中加入此内容。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

将此添加到您的config.xml

<preference name="android-build-tool" value="gradle" />
<plugin name="cordova-plugin-whitelist" />
<access origin="*"/> 
<allow-navigation href="*" />
<allow-navigation href="data:*" />
<allow-intent href="*" />
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<allow-intent href="market:*" />

通配符将允许所有内容,根据意图示例,您可以更具体。