01-16-2013 08:33 PM
Hi,
Changing anything in config file make no effects in my app after reinstalling.
For example, I added splash image to one of my app, reinstalled and nothing. There is no splash image until rebooting of my Alpha A device. Can anybody try to reproduce this issue?
01-17-2013 08:56 AM
Some configuration changes may be cached. Try un-installing the app instead of rebooting you can do something along the lines of:
1. blackberry-deploy -terminateApp ....
2. blackberry-deploy -uninstallApp (Un-installs the app)
3. blackberry-deploy -installApp
Here is a bash script that I use...
echo "Terminating the application"
blackberry-deploy -terminateApp $1 $2 -password $3
echo "Uninstalling the application"
blackberry-deploy -uninstallApp $1 $2 -password $3
echo "Installing the application"
blackberry-deploy -installApp $1 $2 -password $3 -launchApp
01-17-2013 09:25 AM
Hi Erik,
Usually I perform uninstalling an app before installing new build, but with the same effect. This happens only with 2 latest system software. Maybe I should try to terminate an app before uninstalling?