i’m working on app using flutter and android studio this is the error I get every time i try to run my app
i tired running other projects and they ran completely fine
Question posted in Android Studio
The official documentation can be found here.
The official documentation can be found here.
3
Answers
This could be due to a failed rebuild.
File
at the top left corner on the menu bar.Project Structure
Module
at the left end, then click onsources
.Ok
at the bottom of the dialog.Build
thenrebuild project
.I have encountered this issue recently and I don’t know how or why but I somehow my main.dart file was no longer listed as a dart file – I Resolved this by right clicking the main.dart file in Android Studio. Clicked the menu option that populates ‘Mark as Dart’ afterwards no issues – it compiled and a lot less hair for me.
I was having this issue and tried everything and nothing was working.
Then i realised that the
pubspec.yaml
was not there. So i restored it with git and poof everything was working again.It was deleted (but not committed) and restored I it with
git checkout HEAD pubspec.yaml
in my case