问题描述
而运行时正在以下错误...清洁我的项目,然后,太多我得到了同样的错误后,
while run time am getting the following errors... I clean my project then after that too am getting the same error
[2011-04-10 05:33:31 - PersonalTask] ------------------------------
[2011-04-10 05:33:31 - PersonalTask] Android Launch!
[2011-04-10 05:33:31 - PersonalTask] adb is running normally.
[2011-04-10 05:33:31 - PersonalTask] Performing com.acarin.project.personal.task.LoginPage activity launch
[2011-04-10 05:33:31 - PersonalTask] Automatic Target Mode: launching new emulator with compatible AVD 'MA_AVD_2.3.1'
[2011-04-10 05:33:31 - PersonalTask] Launching a new emulator with Virtual Device 'MA_AVD_2.3.1'
[2011-04-10 05:33:34 - Emulator] NAND: could not write file D:\Bama_BackUp\andr\android-sdk-windows/platforms\android-9\images\/system.img, No space left on device
任何一个可以帮我请谢谢周五
Any one can help me pls thank you fri
推荐答案
该系统的NAND闪存仿真器已经运行的空间。您的主机系统D:是不是问题,但由于某些原因的system.img文件重新presents一个NAND闪存仿真器已满。您可以尝试创建一个新的模拟器,或者做一个出厂重置在仿真器把它清理干净。要做到这一点,无论是内部发行的Android恢复出厂设置下的设置 - >隐私,或在命令行启动模拟器:
The system NAND flash for the emulator has run out of space. Your host system D: is not the issue, but for some reason the system.img file that represents a NAND flash for the emulator is full. You can try creating a new emulator, or doing a factory default reset in the emulator to clean it up. To do this, either issue a Factory Data Reset inside Android under Settings -> Privacy, or start the emulator from the command-line:
android list avd
emulator -avd My_Avd_Name -wipe-data
第一条命令列出所有Android的虚拟设备。你需要为第二个命令的名称。模拟器不应该已经在运行。第三种办法是删除以下注册表下的Windows配置文件中的磁盘映像。在您的配置文件,它的 .android / AVD / My_Avd_Name.avd
您应该只需要删除用户数据-qemu.img
也许 cache.img
。您可以尝试删除其他图像文件,如果必要的,但要注意, sdcard.img
将不会自动重新创建。您需要在命令行中运行 mksdcard
。
The first command list all Android Virtual Devices. You need the name for the second command. The emulator should not already be running. A third option would be to delete the disk images located under your Windows profile. Under your profiles, it's .android/avd/My_Avd_Name.avd
You should only need to delete userdata-qemu.img
and maybe cache.img
. You can try deleting other image files if necessarily, but note, sdcard.img
won't be re-created automatically. You need to run mksdcard
from the command-line.
这篇关于没有剩余空间装置 - 机器人的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!