向Android模拟器中复制文件报out of memory错误解决

2014-11-24 03:22:19 · 作者: · 浏览: 2

原因:


用Elcipse或者是android sdk下的程序启动的模拟器,都会报这个错.


试试直接在命令行下输入


emulator -avd 你创建的avd名字(比如android2.1) -partition-size 128


启动.


然后在复制文件就不会有问题了.


英文原文:


As android developer, if you use the following command like:


adb push file /system/..


and meet problems like “failed to copy file to /system/…”, such as:


failed to copy ‘file’ to ‘/system/…’: No space left on device
failed to copy ‘file’ to ‘/system/…’: Out of memory


The resolve method is not using the Eclipse or AVD Manager to start the Android emulator, but by use the command first:


$emulator -avd youravdname -partition-size 128


Then you can try the command “adb push file /system/…”, and the problem maybe resolved.