Cannot pull APK from Android device with adb

前端 未结 1 1843
失恋的感觉
失恋的感觉 2021-02-13 16:16

I\'m trying to get the APK of an installed application from my device. I\'m following the instructions in this answer but when pulling it, adb says the APK doesn\'t exist. This

相关标签:
1条回答
  • 2021-02-13 16:40

    Try this:

    $ adb shell cp /data/app/com.google.android.apps.books-1/base.apk /storage/emulated/0/Download/base.apk
    

    then

    $ adb pull /storage/emulated/0/Download/base.apk
    
    0 讨论(0)
提交回复
热议问题