How To Test What Will Happen When You Publish An Update To Your App To The Market
Solution 1:
Try using option -r
to adb install
:
adb install [-l] [-r] [-s] - push this package file to the device and install it ('-l' means forward-lock the app) ('-r' means reinstall the app, keeping its data) ('-s' means install on SD card instead of internal storage)
Solution 2:
The closest I think you can get is to put the APK somewhere, and download it on a phone. That is about the closest you can get to the real market situations, with the only difference being that you need to add the "unknown sources" option.
(on a sidenote: you can get an error installing an apk with the same package-name, but a different signing.)
Solution 3:
I think your error is because you have the market signed version installed and your trying to install a debug signed version. If you sign it with your market key it should install fine.
Post a Comment for "How To Test What Will Happen When You Publish An Update To Your App To The Market"