Skip to content

Instantly share code, notes, and snippets.

@tjmw
Last active August 29, 2015 14:10
Show Gist options
  • Save tjmw/ee66b025612c2b3c3ca7 to your computer and use it in GitHub Desktop.
Save tjmw/ee66b025612c2b3c3ca7 to your computer and use it in GitHub Desktop.
Installing an Android APK

Prerequisites

$ brew install android android-sdk

List devices

$ adb devices

List packages

$ adb shell 'pm list packages -f'

Remove existing package

$ adb uninstall <package_name>

Install package

$ adb install <path_to_apk>

Logging

$ adb logcat

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment