Forrest logo
back to context overview

adb-install

List of commands for adb-install:

  • adb-install:tldr:19609 adb-install: Grant all permissions listed in the app manifest.
    $ adb install -g ${filename-apk}
    try on your machine
    explain this command
  • adb-install:tldr:b18c8 adb-install: Push an Android application allowing version code downgrade (debuggable packages only).
    $ adb install -d ${filename-apk}
    try on your machine
    explain this command
  • adb-install:tldr:bced3 adb-install: Push an Android application to an emulator/device.
    $ adb install ${filename-apk}
    try on your machine
    explain this command
  • adb-install:tldr:ce880 adb-install: Push an Android application to a specific emulator/device (overrides `$ANDROID_SERIAL`).
    $ adb -s ${serial_number} install ${filename-apk}
    try on your machine
    explain this command
  • adb-install:tldr:ec882 adb-install: Quickly update an installed package by only updating the parts of the APK that changed.
    $ adb install --fastdeploy ${filename-apk}
    try on your machine
    explain this command
  • adb-install:tldr:f1231 adb-install: Reinstall an existing app, keeping its data.
    $ adb install -r ${filename-apk}
    try on your machine
    explain this command
back to context overview