Setup-for-BlackBerry10-development

From Qt Wiki
Revision as of 16:59, 3 March 2015 by AutoSpider (talk | contribs) (Add "cleanup" tag)
Jump to navigation Jump to search
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

Setup for BlackBerry10 development

[toc align_right="yes" depth="2"]

This page outlines the preferred procedure of setting up your environment for BlackBerry10 development. The "BlackBerry Native Development Kit":https://developer.blackberry.com/native/ (BBNDK) includes the necessary resources for application development, testing and deployment. It comes bundled with the Momentics Integrated Development Environment (IDE) which makes both the set up process and the development of native applications as easy as possible.

Initial Preparation

Get a BlackBerry ID

The BlackBerry ID is used as an identity reference and is necessary to register as a developer and use the device in developer mode. You can "create a BlackBerry ID online":http://blackberryid.blackberry.com/. If you already use a BlackBerry device, you should already have a BlackBerry ID, it is the same ID you use in BBM or to download apps from BlackBerry World. If you have such an ID you can use it to get a BlackBerry ID token for development.

Get the Momentics IDE

First "download for the Momentics IDE":https://developer.blackberry.com/native/downloads/, set it up and download an NDK with appropriate API level, see this "article":https://developer.blackberry.com/native/documentation/cascades/getting_started/setting_up.html for more details. Some of the future versions of Qt Creator will support these steps as well.

Setup

Enable the development mode on the device.

Make sure your device is connected to your computer. Switch on Development Mode in Settings -> Security and Privacy-> Development Mode .

Download NDK (s) and setup

Install the Momentics IDE by executing

[code] cd ~/Downloads/ chmod +x momentics-<your-version>.bin ./momentics-<your-version>.bin [/code]

Install the API Level matching your device. Other API Levels can be added ["later":http://developer.blackberry.com/native/documentation/core/com.qnx.doc.ide.userguide/topic/update_ndk_ide.html].

Select Manage Devices from the Devices drop-down menu. Create and Download the BlackBerry ID token needed for deployment and testing. Enter your company name and choose a password. Log in with your Black Berry ID and password in the pop-up window. Click Next and Finish to generate a debug token and deploy it to your device.

Qt Creator 3.0 and later support the BlackBerry ID token and debug token management as well.

Verify your setup with a sample app

In the Momentics IDE

Select a sample application in the Momentics IDE and click Download and Import. This will download the sample and create a new project. Hit the green play button in Momentics to run the application on your BlackBerry 10 device. The application will now start on your BlackBerry 10 device.

Done! :-) You have successfully set up your development environment.

In Qt Creator

See the article Qt-Creator-with-BlackBerry-10. Qt Creator 2.7 and later contain a plug-in which integrates the BlackBerry 10 NDK and its tools into the development process as it is know known to Qt Creator users. This integration is under continuous development. Qt Creator 3.0 introduced many news features and the 3.1 version will bring more.

Simulator

You can download the Simulator from the Momentics IDE via the Devices menu. Select Manage devices from the main toolbar in Momentics and switch to the Simulator tab. The Simulator is available as separate download. For more details, see the "this article on the developer page":https://developer.blackberry.com/devzone/develop/simulator/. Installing the Simulator is optional. You most probably will test and deploy applications on a BlackBerry10 device directly, but sometimes using the Simulator is more convenient. It also allows testing of your app on a configuration of a device which you do not have.

If you work on command line and use Qt 5.2 or later you have to set new value to the

CPUVARDIR<code> environment variable to switch to Simulator as target:

<code>
export CPUVARDIR=x86

Going back to the device target:

export CPUVARDIR=armle-v7

Certainly you have to re-run

qmake<code> each time you change <code>CPUVARDIR<code>.

Prior Qt 5.2 and on Qt4, you have to explicitly specify specs when calling <code>qmake<code> to force generation of make files for the Simulator target:

<code>
qmake -spec blackberry-x86-qcc

Note: You need to have VMware Player installed on your machine to run BlackBerry 10 Simulator.

Qt5