Android 4.0 模拟器 - 空间不足错误
当我尝试在 android 4.0 模拟器上安装我的应用程序时,出现空间不足错误。 它给我一条消息,要求我清理空间。当我进入内部存储时,我看到 12 MB 可用空间,这对于我的应用程序来说已经足够了。
为了安全起见,有没有办法增加模拟器的内部存储空间
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 see 12 MB free which more that enough for my app.
To be safe, is there a way i can increase the Internal Storage of the Emulator
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
创建 AVD(示例:“android4”) 在 Eclipse 中,使用 Android Virtual Device Manager
转至终端
cd [android 目录]/tools/
linux 终端: ./emulator -avd android4 -partition-size 512 &
windows :emulator -avd android4 -partition-size 512
然后安装您的应用程序在此模拟器中
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
请将
-partition-size 512
附加到模拟器选项中创建一个新设备如果不起作用,
append
-partition-size 512
to the emulator optionsif it didn't work create a new Device
还可以尝试将堆大小增加到 64MB 之类的值。这为我解决了这个问题。
Also try increasing the heap size to something like 64MB. This solved the issue for me.