Push my apk to /system/app

前端 未结 14 2065
清酒与你
清酒与你 2020-12-02 07:16

How can I push my application package to Android emulator \"/system/app\" folder?

I\'ve already tried to use:
\"adb push myApk.apk /system/app\"
and it giv

14条回答
  •  独厮守ぢ
    2020-12-02 07:33

    Apparently, there is not enough space for your application in "/system" mount. You can check that with "adb shell df" command.

    To solve this issue, you need to set partition-size parameter adequately while starting your AVD like this:

    emulator.exe -avd  -partition-size 512
    

提交回复
热议问题