Error launching application on Android SDK built for x86.

I created a simple flutter app which works fine and the second app created is throwing the below error

Error: ADB exited with exit code 1
adb: failed to install 
simpleapp.apk: Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE]
Error launching application on Android SDK built for x86.

The default configuration storage is too small and may get this error when the emulator runs out of storage when you install.

To fix this error either modify the emulator configuration or uninstall before you install another app.

Open the Android Virtual Device (AVD) manager in Android Studio, edit the emulator and increase “Internal Storage” and restart the emulator.

Increase the Internal Storage and save it. This will fix the issue.

Leave a comment