2020-09-14 12:58:51 +01:00
|
|
|
# adb install
|
2020-08-28 14:18:03 +01:00
|
|
|
|
|
|
|
> Android Debug Bridge Install: Push packages to an Android emulator instance or connected Android devices.
|
|
|
|
> More information: <https://developer.android.com/studio/command-line/adb>.
|
|
|
|
|
|
|
|
- Push an Android application to an emulator/device:
|
|
|
|
|
|
|
|
`adb install {{path/to/file.apk}}`
|
|
|
|
|
2022-06-28 03:26:43 +01:00
|
|
|
- Push an Android application to a specific emulator/device (overrides `$ANDROID_SERIAL`):
|
|
|
|
|
|
|
|
`adb -s {{serial_number}} install {{path/to/file.apk}}`
|
|
|
|
|
2020-08-28 14:18:03 +01:00
|
|
|
- Reinstall an existing app, keeping its data:
|
|
|
|
|
|
|
|
`adb install -r {{path/to/file.apk}}`
|
|
|
|
|
2022-09-04 19:38:33 +01:00
|
|
|
- Push an Android application allowing version code downgrade (debuggable packages only):
|
|
|
|
|
|
|
|
`adb install -d {{path/to/file.apk}}`
|
|
|
|
|
2020-08-28 14:18:03 +01:00
|
|
|
- Grant all permissions listed in the app manifest:
|
|
|
|
|
|
|
|
`adb install -g {{path/to/file.apk}}`
|
|
|
|
|
|
|
|
- Quickly update an installed package by only updating the parts of the APK that changed:
|
|
|
|
|
|
|
|
`adb install --fastdeploy {{path/to/file.apk}}`
|