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 s
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
append -partition-size 512
to the emulator options
if it didn't work create a new Device
Also try increasing the heap size to something like 64MB. This solved the issue for me.