Pulling APKs
A guide to pulling APK files from an Android device
Determine the package name of the app, e.g. "com.example.someapp". Skip this step if you already know the package name.
adb shell pm list packagesGet the full pathname of the APK file for the desired package.
adb shell pm path com.example.someappThe output will look something like:
package:/data/app/com.example.someapp-2.apk
package:/data/app/com.example.someapp-nfFSVxn_CTafgra3Fr_rXQ==/base.apkUsing the full pathname from Step 2, pull the APK file from the Android device to the development box.
adb pull /data/app/com.example.someapp-2.apk path/to/desired/destinationLast updated