Teekam Suthar
Teekam Suthar

Reputation: 459

New Flutter Project wizard not showing on Android Studio 4.0.1

Since the Android Studio 4 got released, the startup dialog is missing the option to create a new flutter project. I've tried all of the solutions mentioned here

New Flutter Project wizard not showing on Android Studio 3.0.1

But still no luck! What to do? Does anybody has this even working with AS 4.0.1??

enter image description here

Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel beta, 1.20.0-7.2.pre, on Microsoft Windows [Version 10.0.19041.388], locale en-US)

[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
[✓] Chrome - develop for the web
[✓] Android Studio (version 4.0)
[✓] VS Code (version 1.47.3)
[✓] Connected device (3 available)

• No issues found!

Upvotes: 1

Views: 3017

Answers (5)

Madhur Darekar
Madhur Darekar

Reputation: 1

Simple solution.. Install plugins for flutter and Dart and then restart the Android studio.. It will work.

Upvotes: 0

Antoni Neutron
Antoni Neutron

Reputation: 1

I tried all the answer above, but none worked for me. By enabling the Android APK Support & Android NDK Support plugins and restarting Android studio, the option to create a flutter project started showing. By the way I use Android studio v4.0.1

Upvotes: 0

Teekam Suthar
Teekam Suthar

Reputation: 459

Okay,

finally fixed this by removing .AndroidStudio4.0 config folder from my user directory.

It simply created a new .AndroidStudio4.0 folder along with the next launch of Android Studio, installed dart and flutter plugins and I'm good to go.

 - close Android Studio if it's running.
 - delete or rename the `.AndroidStudio4.0` config folder in user directory.
 - launch Android Studio, and walk through a new configuration 
 - install `dart` and `flutter` plugins and restart IDE

Now you should probably see the option in launch wizard.

update: In new version of Android Studio(from ~4.1), they have moved the location of config folder. You can find it here: C:\Users\%userfolder%\AppData\Roaming\Google\AndroidStudio4.1

enter image description here

Upvotes: 3

Malwinder Singh
Malwinder Singh

Reputation: 7060

For me, I had just installed Flutter and Dart plugin. I did not had AndroidStudio4.0 folder. My Android Studio version: 4.1

Upvotes: 0

Jakodera
Jakodera

Reputation: 11

Delete the AndoidStudio4.0 config folder in user directory. Launch android studio Do all the required configuration settings Install Flutter and Dart Restart your IDE

All should be well

Upvotes: 0

Related Questions