Pulling APK from Device
- Download the app in the Play Store (or with apkcombo).
-
Drop into a shell on your emulator or physical device:
adb shell -
Find the name of the package installed on the phone and copy
it:
pm list packages | grep search_string -
Find the path of the package and copy it for the last
step:
pm path package_name -
Exit adb shell:
exit -
Pull the apk from the phone:
adb pull path_to_package_on_device destination_path