I am trying to get the APK of an installed application from my device. I follow the instructions in this answer , but pulling it, adb says that the APK does not exist. These are the exact steps:
$ adb shell pm list packages ... (whole list of packages) ... $ adb shell pm path com.google.android.apps.books package:/data/app/com.google.android.apps.books-1/base.apk $ adb pull /data/app/com.google.android.apps.books-1/base.apk adb: error: remote object '/data/app/com.google.android.apps.books-1/base.apk' does not exist
How can I pull this file to a local drive?
source share