2
edits
Changes
2
'''Step 1.'''
File->New->Others->BlackBerry Project
''Note: If you want really to learn how to build a BB app, then in the wizard choose the Empty Application option.''
}
}
</source>
--------
'''Step 2.'''
In the main method create a new instance of the application and make the currently running thread the application's event dispatch thread.
<source lang="java">
MyApp theApp = new MyApp();
theApp.enterEventDispatcher();
</source>