如果我将一个插件添加到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="dev@cordova.apache.org" 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" />
每当我尝试上传它时,它就会变得格格不入。
答案 0 :(得分:19)
我认为问题可能是您正在使用
<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" >
(因为您使用cordova而不是phonegap创建了项目)
这对于cordova项目是正确的,但可能不适用于phonegap构建项目(并且不允许使用插件)。
尝试
<widget id="com.example.app" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
重要的部分是xmlns:gap="http://phonegap.com/ns/1.0"
,而不是xmlns:cdv="http://cordova.apache.org/ns/1.0"
答案 1 :(得分:2)
对我而言,它只不过是插件的结束标记:
不正确:
<plugin name="cordova-plugin-whitelist" />
<强>正确:强>
{{1}}
答案 2 :(得分:0)
一些时间问题来自于Android Build使用这一行
<widget id="com.example.app" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://cordova.apache.org/ns/1.0" >
为此我们需要添加此行xmlns:android = "http://schemas.android.com/apk/res/android"
代码防止在Config.xml中格式错误
完成:<widget id="com.example.app" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://cordova.apache.org/ns/1.0" xmlns:android = "http://schemas.android.com/apk/res/android">