Unable To Create New Flutter Project On Android Studio Getting Error => Could Not Find A File Named “pubspec.yaml” At Project Location Drive
Solution 1:
My guess is that you have a corrupted install of Flutter. I would suggest you go to this Github link and follow the commands shown by Flutter, but make sure that you run it in your Flutter install directory since it already caused some problems for someone in Github who didn't run it in the correct directory. This is one of my first contributions, so let me know if it fixes your issue. Thanks
Solution 2:
This has happened to me several times:
What's ultimately solved things for me (OS X) is deleting pub's cache:
sudo rm -Rf /Users//.pub-cache
Also, delete the packages directory in your project's root:
sudo rm -Rf packages
Then pub gets again in your project(s), but make sure that you are not operating as root (a whoami will tell you, and an exit will get you out of there).
Post a Comment for "Unable To Create New Flutter Project On Android Studio Getting Error => Could Not Find A File Named “pubspec.yaml” At Project Location Drive"