0% found this document useful (0 votes)
57 views1 page

ADB File App Installation Command

The document discusses ADB commands for installing and uninstalling apps on Android devices. It lists options for pushing and installing packages via the "adb install" command such as locking the app, replacing existing apps, allowing test packages, and installing to the SD card. The "adb install-multiple" command allows installing multiple packages at once. The "adb uninstall" command removes an app package, with the -k option preserving the app's data and cache directories.

Uploaded by

ankurmishraer
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
57 views1 page

ADB File App Installation Command

The document discusses ADB commands for installing and uninstalling apps on Android devices. It lists options for pushing and installing packages via the "adb install" command such as locking the app, replacing existing apps, allowing test packages, and installing to the SD card. The "adb install-multiple" command allows installing multiple packages at once. The "adb uninstall" command removes an app package, with the -k option preserving the app's data and cache directories.

Uploaded by

ankurmishraer
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 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