Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

It was wroking before i tryed to put in rim: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>

Note: the dash are to hide personal information If anyone know what wrong please help.

share|improve this question

1 Answer

You have no namespace defined for rim in the xml, that's why you're getting a malformed XML error.

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

I don't know what URL the rim namespace should be defined against, but I'm guessing it will be mentioned in the phonegap documentation.

share|improve this answer
thank you so much i figured it out it works – S.Y Jan 1 at 17:17
That's great @S.Y - don't forget to accept the answer if it solved your problem :) – John Farrelly Jan 1 at 17:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.