Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Android Debug Bridge

ADB Command

App installation commands


Push packages to the device and install them. Possible options are the following:
 -l : Forward lock app.
 -r : Replace the existing app.
 -t : Allow test packages. If the APK is built using a developer preview SDK (if
the  targetSdkVersion  is a letter instead of a number), you must include the  -
t  option with the install command if you are installing a test APK.
 -s : Install the app on the SD card.
 -d : Allow version code downgrade (debugging packages only).
 -g : Grant all runtime permissions.
adb install [options] package
Same options as  install  with the addition of the following:
 -p : Partial app install.
adb install-multiple [options] packages
Remove this app package from the device. Add the  -k  option to keep the data and
cache directories.
adb uninstall [-k] package

You might also like