Skip to main content

Why is my Android build failing with INSTALL_FAILED_INSUFFICIENT_STORAGE ?

Andriod Build Failure

If your android build is failing with the error "INSTALL_FAILED_INSUFFICIENT_STORAGE", try increasing the partition size of the emulator with:

emulator -partition-size 1024

If you are using the Android orb, you can specify partition-size in the following way:

additional-emulator-args: "-partition-size 1024"

You can adjust the value depending on your project requirements.

Did this answer your question?