PhoneGap config.xml文件

时间:2018-02-18 20:26:00

标签: android ios xml config phonegap

我有以下内容:

0

PhoneGap构建控制台说: App ID xxxx

版本1.0.0

由xxxx拥有

PhoneGap(iOS / Android / Windows)cli-6.5.0(4.3.1 / 6.1.2 / 4.4.3)

来源.zip包

但我的代码中没有任何内容表示PhoneGap(iOS / Android / Windows)cli-6.5.0。

PhoneGap构建控制台上还有一个通知:cli-8.0.0现在在PhoneGap Build

我尝试添加

<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns     = "http://www.w3.org/ns/widgets"
        xmlns:gap = "http://phonegap.com/ns/1.0"
        id        = "com.xyz.xyz"
        version   = "1.0.0">
    <name>Qwerty</name>
    <description>Your personal qwerty.</description>    
    <author href="https://qwerty.com" email="qwerty@qwerty.com">Qwery</author>
    <allow-navigation href="https://qwerty/*" />
    <allow-navigation href="https://xyz/*" />
    <icon src="icon.png" />     
    <allow-intent href="http://*/*" />
    <allow-intent href="https://*/*" />
    <allow-intent href="tel:*" />
    <allow-intent href="sms:*" />
    <allow-intent href="mailto:*" />
    <allow-intent href="geo:*" />
    <platform name="android">
        <allow-intent href="market:*" />
    </platform>
    <platform name="ios">
        <allow-intent href="itms:*" />
        <allow-intent href="itms-apps:*" />
    </platform> 
    <access origin="*" subdomains="true" />
    <plugin name="cordova-plugin-battery-status" spec="1.2.3" />
    <plugin name="cordova-plugin-camera" spec="2.4.0" />
    <plugin name="cordova-plugin-console" spec="1.0.6" />
    <plugin name="cordova-plugin-device-orientation" spec="1.0.6" />
    <plugin name="cordova-plugin-geolocation" spec="2.4.2" />
    <plugin name="cordova-plugin-globalization" spec="1.0.6" />
    <plugin name="cordova-plugin-network-information" spec="1.3.2" />
    <plugin name="cordova-plugin-statusbar" spec="2.2.2" />
    <plugin name="cordova-plugin-vibration" spec="2.1.4" />
    <plugin name="cordova-plugin-whitelist" spec="1.3.2" />
</widget> 

但这破坏了iOS版本。

  1. 如何强制使用cli-8.0.0以使其适用于Android和Android?的iOS?
  2. 我一直在寻找一个COMPLETE config.xml示例(适用于iOS和Android),但只能找到片段吗?

0 个答案:

没有答案