我正在使用 PhoneGap 3.0 CLI 通过以下命令创建示例应用程序:
phonegap create MyTestApp com.example.mytestapp MyTestApp
然后我看到了两个不同的 config.xml 文件,下面是我在项目根 www 文件夹中看到的:
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.example.mytestapp" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
其中 id 属性正确且版本为 1.0.0
但是我在 /platforms/ios/MyTestApp/config.xml 中看到的有点不同:
<widget id="io.cordova.helloCordova" version="2.0.0" xmlns="http://www.w3.org/ns/widgets">
id 错误,版本为 2.0.0
为什么它们不同?您知道,每次我们运行 phonegap build ios 命令时,都会重新创建 iOS config.xml 文件。