我试图在我的Phonegap应用程序中使用“config.xml”,但得到“格式错误的config.xml”

时间:2013-01-01 16:33:19

标签: cordova navigation malformed

在我试图放入边缘之前它正在工作:导航,

<?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.phonegap.example"
    version   = "1.0.0">


<name>---</name>
<preference name="disable-cursor" value="true" />
 <rim:navigation mode="focus"/>
 <feature id="blackberry.ui.dialog"/>

<icon src="icon.png" width="100px" height="100px" />
<gap:splash src="splash.png" />
<gap:splash src="splash.png" gap:platform="blackberry" />
<description>
A simple PhoneGap Build application.
</description>

<author href="https://example.com" email="you@example.com">
S---- Y----
</author>
</widget>

注意:短划线用于隐藏个人信息 如果有人知道什么是错的请帮助。

1 个答案:

答案 0 :(得分:1)

您没有为xml中的rim定义任何名称空间,这就是您收到格式错误的XML错误的原因。

<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
    xmlns:gap = "http://phonegap.com/ns/1.0"
    xmlns:rim = "http://????"
    id        = "com.phonegap.example"
    version   = "1.0.0">

我不知道应该定义rim命名空间的URL,但我猜它会在phonegap文档中提到。