Skip to content
This repository has been archived by the owner on Oct 9, 2018. It is now read-only.

Config.xml Requirements

tneil edited this page May 4, 2012 · 8 revisions

To properly use the functionality of bbUI in your application, you will need at least the following base capabilities declared in your application's config.xml file.

<widget xmlns:rim="http://www.blackberry.com/ns/widgets" version="1.0.0" xmlns="http://www.w3.org/ns/widgets">  
  <name>My App Name</name>
  <content src="mystartpage.htm" />
  <rim:navigation mode="focus" />
  <feature id="blackberry.system.event" />
  <feature id="blackberry.app" />
</widget>

Additionally, if you use dropdowns in your application, you will need to include the additional feature:

<feature id="blackberry.ui.dialog" />

For menus to work on Smartphones you will need to include the feature:

<feature id="blackberry.ui.menu"/>

For menus to work on PlayBook and BlackBerry 10 you will need to include the feature:

<feature id="blackberry.app.event"/>
Clone this wiki locally