Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Increasing the memory capacity of the android emulator?

Tags:

android

How can the Android emulator's memory capacity be increased? I have a 16MB binary file which I have to parse. But when I execute a second time it says:

Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE.

Can anybody help please?

like image 582
sajjoo Avatar asked Aug 11 '10 09:08

sajjoo


1 Answers

To summarize (and clarify), in Eclipse, go to "run Configurations". You can find that by right clicking on your project and click on "Run" and then "Run Configurations". Select "target", and select a preferred emulator target to launch. Then under "additional emulator command line options," add this:

-partition-size 1024

then click on apply and run.

like image 192
sajjoo Avatar answered Oct 23 '22 08:10

sajjoo