Search code examples
androidflutterandroid-emulator

INSTALL_FAILED_INSUFFICIENT_STORAGE when attempting to run in emulator in flutter


I keep getting this error when trying to run a simple flutter app in emulator.

enter image description here

Below is what is have tries

  1. I have tried increasing internal storage

enter image description here

  1. flutter clean and flutter pub get

Below is the main.dart file

import 'package:english_words/english_words.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    final wordPair = WordPair.random();
    return MaterialApp(
      title: 'Welcome to Flutter',
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Welcome to Flutter'),
        ),
        body: Center(
          child:Text(wordPair.asPascalCase),
        ),
      ),
    );
  }
}

Solution

  • You can resolve this by going into avd and adding a new device or edit the current.

    Select Hardware-> Select System image -> verify Configuration section
    Click on Advance settings and increase the limit of device internal storage. It will be 800 by default.

    See the images below

    enter image description here

    enter image description here