Skip to content

Instantly share code, notes, and snippets.

@richy486
Last active September 24, 2015 15:53
Show Gist options
  • Save richy486/e7acbcb59450360c793c to your computer and use it in GitHub Desktop.
Save richy486/e7acbcb59450360c793c to your computer and use it in GitHub Desktop.
Android debugging
# logcat in terminal
adb logcat -s Unity ActivityManager PackageManager dalvikvm DEBUG
# log to file
adb shell logcat > log.txt
# list packages
adb shell pm list packages
# full path to package
adb shell pm path com.company.app
# download package
adb pull /data/app/com.company.app.apk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment