Phonegap 构建 config.xml
Phonegap build config.xml
我有一个使用 PhoneGap 构建的混合应用程序。如果我使用 Android Studio / XCode 编译应用程序一切正常,但我想使用 PhoneGap Build。在我的 Android 设备上启动使用 PhoneGap 构建的应用程序时,它不起作用。这似乎是一个权限问题。我的应用程序需要互联网连接和访问定位服务。我不知道如何将其包含在我的 config.xml
.
中
有什么想法吗?
将此添加到您的 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:*" />
通配符将允许所有内容,根据意图示例,您可以更具体。
我有一个使用 PhoneGap 构建的混合应用程序。如果我使用 Android Studio / XCode 编译应用程序一切正常,但我想使用 PhoneGap Build。在我的 Android 设备上启动使用 PhoneGap 构建的应用程序时,它不起作用。这似乎是一个权限问题。我的应用程序需要互联网连接和访问定位服务。我不知道如何将其包含在我的 config.xml
.
有什么想法吗?
将此添加到您的 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:*" />
通配符将允许所有内容,根据意图示例,您可以更具体。