Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to setup a Fast BlackBerry Smart Phone simulator and How to make Code Signing Faster in BlackBerry?

Many times while coding an application for BlackBerry® smartphones, I want to quickly start the BlackBerry® Smartphone Simulator and see what I have achieved so far. Micro-iterative coding is my style of choice. I don’t need to debug any code, I just want to see it running; If it doesn’t work, then I’ll begin debugging.But launching simulator and checking output is taking so much time especially while debugging. And if I decide to test my code directly in device,each time Code signing must be do even if I make any small changes in code,and which is a very time consuming process and so I felt very much ridiculous during development of the app. I don't want to continue in this procedure for future developing apps.As I am new to BlackBerry Application development, I have no idea how to fix this time consuming process.So I request you all, to give me your valuable suggestions to overcome this issue, especially on

Issue Priority to be solved:

  1. How to load the app faster in device.
  2. How to debug or run the code faster in Simulator.
like image 928
Pradeep Menon Avatar asked Nov 13 '22 15:11

Pradeep Menon


1 Answers

Obtain a hot swapping enabled simulator. (most support this feature now). Re running your code will infact just reload the application with new changes. And without restarting the emulator.

As for code signing. It is not needed for an emulator. Only a real device.

Real devices are not always faster at everything. aka file reading. Be warned. Test it on real devices from time to time.

like image 182
IAmGroot Avatar answered Mar 15 '23 17:03

IAmGroot