i try install via adb apk connected device :
adb -d install android-debug.apk
but not delete old apk :
2956 kb/s (2131317 bytes in 0.704s) pkg: /data/local/tmp/android-debug.apk failure [install_failed_already_exists] rm failed -f, no such file or directory
is there way force install ?
adb install -r android-debug.apk
-r replaces existing apk.
i know, not documented... command's --help lists:
adb install [-lrtsd] <file> - push package file device , install (-l: forward lock application) (-r: replace existing application) (-t: allow test packages) (-s: install application on sdcard) (-d: allow version code downgrade) (-p: partial application install)
Comments
Post a Comment