No space left on Android Emulator

后端 未结 7 1529
礼貌的吻别
礼貌的吻别 2020-12-15 22:12

I have been developing my app for around two months, in the last week i have started getting the following error when trying to compile and run the app from Eclipse:

7条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-15 22:31

    The apps are installed in /data/apps. Make sure that your data partition size is big enough to support your app. The command for running the emulator will be

    emulator.exe -avd  -partition-size 512 -no-snapshot-load
    

    Partition size will set size of system and data images in MB. You can change 512 to a greater value depending on your needs. -no-snapshot-load ensures that you are not booting from a snapshot and thus you see the new partition size.

提交回复
热议问题