Can I emulate application upgrade with ADB?
When I do adb install
I have to delete the previous version first, if already installed.
If it is not possible to emulate app upgrade with ADB what could be the easiest way to emulate it?
Can I emulate application upgrade with ADB?
When I do adb install
I have to delete the previous version first, if already installed.
If it is not possible to emulate app upgrade with ADB what could be the easiest way to emulate it?
You can use
adb install -r <apk path>
it keeps the data and re-installs the apkOther available options for
adb install
: