Код: Выделить всё
➜ ~ adb install chrome100.apk
Performing Streamed Install
adb: failed to install chrome100.apk: Failure [INSTALL_FAILED_VERSION_DOWNGRADE: Downgrade detected: Update version code 489607923 is older than current 567263633]
Код: Выделить всё
➜ ~ adb uninstall com.android.chrome
Failure [DELETE_FAILED_INTERNAL_ERROR]
➜ ~ adb shell pm uninstall com.android.chrome
Failure [DELETE_FAILED_INTERNAL_ERROR]
➜ ~ adb shell pm uninstall --user 0 com.android.chrome
Failure [not installed for 0]
Код: Выделить всё
➜ ~ adb
...
app installation (see also `adb shell cmd package help`):
install [-lrtsdg] [--instant] PACKAGE
push a single package to the device and install it
install-multiple [-lrtsdpg] [--instant] PACKAGE...
push multiple APKs to the device for a single package and install them
install-multi-package [-lrtsdpg] [--instant] PACKAGE...
push one or more packages to the device and install them atomically
-r: replace existing application
-t: allow test packages
-d: allow version code downgrade (debuggable packages only)
-p: partial application install (install-multiple only)
-g: grant all runtime permissions
...
Код: Выделить всё
➜ ~ adb install -r -d chrome100.apk
Performing Streamed Install
adb: failed to install chrome100.apk: Failure [INSTALL_FAILED_VERSION_DOWNGRADE: Downgrade detected: Update version code 489607923 is older than current 567263633]
Подробнее здесь: https://stackoverflow.com/questions/796 ... ackage-usi