1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

adb-install: add -s example (#8159)

This commit is contained in:
Axel Navarro 2022-06-27 23:26:43 -03:00 committed by GitHub
parent ba01a1bfa4
commit b5bc4bbf18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,10 @@
`adb install {{path/to/file.apk}}`
- Push an Android application to a specific emulator/device (overrides `$ANDROID_SERIAL`):
`adb -s {{serial_number}} install {{path/to/file.apk}}`
- Reinstall an existing app, keeping its data:
`adb install -r {{path/to/file.apk}}`