我正在尝试让一个"config.xml"在我的Phonegap应用程序中工作,但得到"malformed config.xml"



它在我尝试放入边缘之前正在旋转:navigation,

<?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>

注意:破折号是为了隐藏个人信息如果有人知道错了,请提供帮助。

您没有为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">

我不知道应该定义轮辋名称空间的网址,但是我猜这将在电话盖上文档中提及。

相关内容

  • 没有找到相关文章

最新更新