Nand Error In Hello World Project In The Official Android Developer Tutorial
Solution 1:
I was able to fix it exporting ANDROID_TMP
exportANDROID_TMP=/home/myuser
Solution 2:
For me at least, I'd let my disk run out of space without realizing it.
It was just coincidence that this was the first item that failed.
Solution 3:
It's a real disturbing situation when error can't completely describe problem in detail!
finally I figured out all this kind of error messages ("File Exists" and "There is no space") are due to small amount of mounted space on /tmp folder.
in Linux try mount
and you'll see specified parameters of tmpfs and /tmp
changing $ANDROID_TMP value is not a proper solution and even doesn't work at all.
try editing fstab
sudo gedit /etc/fstab
and increase /tmp size to a larger value that makes sense to you (like:1500M) then reboot system
PS: It's not IDE-dependent (Eclipse or Android-Studio) but something that deal with AVD Emulator
Post a Comment for "Nand Error In Hello World Project In The Official Android Developer Tutorial"