Skip to content

Instantly share code, notes, and snippets.

@dcz-switcher
Created October 7, 2016 06:07
Show Gist options
  • Save dcz-switcher/4ddf90e69b98b8d5c6b14edb70d21606 to your computer and use it in GitHub Desktop.
Save dcz-switcher/4ddf90e69b98b8d5c6b14edb70d21606 to your computer and use it in GitHub Desktop.
how get apk installed on my android device
#get list of installed app
adb shell pm list packages
# ... with filter
adb shell pm list packages | grep facebook # return package:com.facebook.orca
# get apk path
adb shell pm path com.facebook.orca # return /mnt/asec/com.facebook.orca-2/base.apk
# get apk
adb pull /mnt/asec/com.facebook.orca-2/base.apk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment