04-07-2011 10:21 AM
Hi,
I'm debuging my app, how can I delete early installed version in PlayBook emulator?
Solved! Go to Solution.
04-07-2011 11:27 AM
from the command line:
blackberry-deploy -uninstallApp -device xx.xx.xx.xx -package-id ID -password pass
where you replace xx.xx.xx.xx by the ip address of your simulator
pass is the password of the device
ID is the id of the application you want to delete
to get the application id:
blackberry-deploy -listInstalledApps -device xx.xx.xx.xx -password pass
this will give you a list with entries like
sys.browser.c3lzLmJyb3dzZXIgICAgICAgICA::c3lzLmJyb3dzZXIgICAgICAgICA,1.0.0.252,websl
In this case for the application sys.browser the id is: c3lzLmJyb3dzZXIgICAgICAgICA
also check this thread: http://supportforums.blackberry.com/t5/Tablet-OS-S
04-07-2011 11:39 AM
thank you!
04-07-2011 01:14 PM - edited 04-07-2011 01:15 PM
Also, instead of using -package-id, I've always used -package BARFILE.bar (this can be your updated bar file for your application, as long as it's the same application the older version will get uninstalled). Basically the same exact command line command to install an app, just instead of -installApp, use -uninstallApp.