Android 4.0 emulator - out of space error

后端 未结 3 512
無奈伤痛
無奈伤痛 2020-12-19 13:21

I get an Out of space error when i try to install my app on the android 4.0 emulator. It gives me a message asking me to cleanup the space. When i go to internal storage I s

相关标签:
3条回答
  • 2020-12-19 13:48

    Create an AVD (example: "android4") In Eclipse with the Android Virtual Device Manager

    go to a terminal

    cd [android directory]/tools/

    linux terminal: ./emulator -avd android4 -partition-size 512 &

    windows : emulator -avd android4 -partition-size 512

    Then install your app in this emulator

    0 讨论(0)
  • 2020-12-19 14:09

    append -partition-size 512 to the emulator options

    if it didn't work create a new Device

    0 讨论(0)
  • 2020-12-19 14:11

    Also try increasing the heap size to something like 64MB. This solved the issue for me.

    enter image description here

    0 讨论(0)
提交回复
热议问题