Skip to content

Instantly share code, notes, and snippets.

@azureru
Last active February 17, 2017 19:32
Show Gist options
  • Save azureru/21da2c5acedf5448577898cea0a05ff6 to your computer and use it in GitHub Desktop.
Save azureru/21da2c5acedf5448577898cea0a05ff6 to your computer and use it in GitHub Desktop.
Adb Commands Cheatsheet

Install

adb install {yourapk.apk}

Inside Shell

get list of running process, android app will also be listed here by the package name

ps

##Get list of installed packages

pm list packages

##Uninstall

pm uninstall {package.name}

##Clear data this will also trigger the running app to stop

pm clear {package.name}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment