I keep getting this error when trying to run a simple flutter app in emulator.
Below is what is have tries
- I have tried increasing internal storage
- 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),
),
),
);
}
}
CodePudding user response:
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
CodePudding user response:
Try to uninstall some other apps from your device or wipe data of the emulator will help to install the new app
CodePudding user response:
You have increased the internal storage, but are you sure that there is space on your computer's disk? If there isn't, freeing up space would probably fix the problem