如果我添加一個插件到config.xml並上傳我的項目,配置似乎是格式不正確。Phonegap生成Config.xml格式錯誤
<?xml version='1.0' encoding='utf-8'?>
<widget
id="com.example.app"
version="0.0.1"
xmlns="http://www.w3.org/ns/widgets"
xmlns:cdv="http://cordova.apache.org/ns/1.0"
>
<name>App</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="[email protected]" href="http://cordova.io">
Me
</author>
<content src="index.html" />
<access origin="*" />
<preference name="phonegap-version" value="3.0.0" />
<gap:plugin name="org.apache.cordova.file" />
</widget>
的PhoneGap的instructions告訴我這行加入到我的config.xml:
<gap:plugin name="org.apache.cordova.file" />
每當我上傳它,它變得畸形。
沒有插件就可以正確構建嗎? – QuickFix