adb install foo.apk
When using this command, if the apk exists, I should get the error *Failure [INSTALL_FAILED_ALREADY_EXISTS]*
adb install -r myapp-release.apk
In this case,the existing apk will be replaced, by retaining old data according to the docs,
'-r' means reinstall the app, keeping its data
Now how do I reinstall the app, but all previous data should be erased?
EDIT
I know we can do this
adb uninstall com.package.foo & adb install foo.apk
I just wanted to know if there is a command or something in adb itself.
No. There is no (documented) way to do that with the
adb install
command. Instead, you should do this:Before the installation clean the data like this:
then you can install normally using:
or just run through your IDE
Try
adb uninstall yourpackage.whatever.com
, then install again. Or select Clear data on the phone for that application.It's
adb uninstall com.package.foo && adb install foo.apk
, however the uninstall won't work if the app is a system app, which can't be uninstalled. There's the commandadb shell pm clear packageName
to clear a certain app's data, however it may require root. To reinstall the apk as usualadb install -r app.apk
If you want to install
debug.apk
file withoutclear the data
:If you want to install
debug.apk
file withclear the data
:And to start the app on Device via adb command: