i am using eclipse and the blackberry simulator for my BB development. is there any way of viewing your code changes without having to close the current simulator session and start a new one? it seems like it's a pain in the rear to activate a new session each and every time (just to see a code change).
Of course, if you attempt to run another instance of a simulator in eclipse, you will get a warning dialog stating that "A Blackberry debugging session is already active. Only one Blackberry debugging session can be active at one time."
thank you very much in advance,
ac
I found this here:
I found writing a shell script to package and deploy the app with a few specific parameters was far more efficient--time-wise. Here's an example:
"$SDKDIR/dependencies/tools/bin/blackberry-deploy" -uninstallApp -installApp -launchApp -password <your_password> -device 169.254.0.1 -package <path_to_bar_file.bar>
I specify the shell-script to run as a build task in my IDE and and let it do it's job. The key here is the
-uninstallApp
part &-installApp
params which saves a lot time in the long run.