Reputation: 37
I am just beginning Blackberry10 development. So I would like to know if there is any way to start working on the Blackberry10 native SDK with Phonegap (say 2.5) starting from a kind of "Hello World" application.
I have read the Phonegap documentation but the necessary steps are not clear.
The following are configured:
Upvotes: 0
Views: 818
Reputation: 3206
I could be wrong, I'm just starting as well, but according to this page (http://docs.phonegap.com/en/2.3.0/guide_getting-started_blackberry_index.md.html) it is my understanding that you don't need the momentics IDE for developing HTML5 apps using phonegap.
You can copy the cordova/phonegap sample project, and compile it by executing the command:
ant qnx build
(of course after adjusting qnx.bbwp.dir
in project.properties
)
You also need to adjust the project.properties file to set the simulator ip adress & password. You can then execute:
ant qnx load-simulator
to install the app in the simulator.
Upvotes: 2