我重新启动了eclipse并将错误更改为"错误:解析XML:解除绑定错误前缀"错误
我想在我的android phonegap应用程序中使用此插件.这是一个本地通知插件.我在此行的config.xml文件中收到错误:
<gap:plugin name="de.appplant.cordova.plugin.local-notification" version="0.6.2" />
Run Code Online (Sandbox Code Playgroud)
有一个关于这个问题的一个类似的问题在这里,但答案是不相关的我的问题.
这是我的config.xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns = "http://www.w3.org/ns/widgets"
id = "com.xxx.xxx"
version = "2.0.0">
<name>xxx</name>
<description>
xxx
</description>
<author href="http://www.example.com" email="xxx@yahoo.com">
xxx
</author>
<access origin="*"/>
<!-- <content src="xxx" /> for external pages -->
<content src="index.html" />
<preference name="loglevel" value="DEBUG" />
<!--
<preference name="splashscreen" value="resourceName" />
<preference name="backgroundColor" value="0xFFF" />
<preference name="loadUrlTimeoutValue" value="20000" />
<preference name="InAppBrowserStorageEnabled" value="true" />
<preference name="disallowOverscroll" value="true" />
-->
<feature name="App">
<param name="android-package" value="org.apache.cordova.App"/>
</feature> …Run Code Online (Sandbox Code Playgroud)