New Flutter Project wizard not showing on Android Studio 3.0.1

DartFlutterAndroid Studio-3.0

Dart Problem Overview


I installed Flutter following official document and also installed Flutter and Dart plugin on Android Studio.

But, I can't see File>New Flutter Project wizard on Android Studio 3.0.1

I run "flutter doctor" command. See the below output.

Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel beta, v0.1.5, on Mac OS X 10.13.3 17D102, locale en-TR)
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)
[✓] iOS toolchain - develop for iOS devices (Xcode 9.2)
[✓] Android Studio (version 3.0)
[✓] IntelliJ IDEA Community Edition (version 2017.3.3)
[!] Connected devices
    ! No devices available

! Doctor found issues in 1 category.

Dart Solutions


Solution 1 - Dart

You need check the “AndroidAPK Support” in your Plugins.

See this screenshot: Android APK Support must be ticked in

Solution 2 - Dart

If you are sure to have both Dart and Flutter plugins correctly installed, check again your Plugins and be sure that Android APK Support is enabled.
If it isn't, enable it!

Android APK Support

Et voilà! Now everything should be fine:

New Flutter project

You can find the plugin menu inside the Welcome page Plugin from Welcome page

or, when you have a project opened, inside the Preferences menu: Plugin menu inside Preferences menu

Solution 3 - Dart

I also faced it but soon I solved it

I simply install flutter and dart plugins and restarted Android Studio.

After restarting I noticed that there is no Wizard for creating flutter apps. But soon I realized that I have disabled some plugins ( Android Studio's default plugins ) so I enabled all plugins and restarted Android Studio again and BOOM! Now there is a wizard for Creating Flutter Apps.

Hope this helps you !

Solution 4 - Dart

Had the same problem. Check-in Android Studio if the Dart and Flutter plugins are both installed and marked with a lock symbol in Preferences --> Plugins.

Anyway, the following procedure helped me:

  1. uninstall the Flutter plugin
  2. restart Android Studio.
  3. uninstall the Dart plugin
  4. restart Android Studio again which seemed important to do
  5. install the Dart plugin again
  6. restart Android Studio although it is annoying
  7. install the Flutter plugin again
  8. and guess: restart Android Studio

After the last restart I saw the success message:

success notification of flutter

I assume we both installed both plugins without restarting after Dart.

Solution 5 - Dart

My answer will be nearly same with @VickyBOSS but I'll upload screenshots of before and after ;)

First and foremost Flutter and Dart plugins must be installed before. enter image description here

After installing these plugins you can check if it is ok or not with flutter doctor enter image description here

If you hadn't installed the plugins you would have this: enter image description here

Android Studio At first, I didn't see "Start a new Flutter project" enter image description here enter image description here

After: enter image description here

Solution 6 - Dart

I have also same problem.but what can you do in that situation is Just create the project with command line :

> flutter create your_app_name

Now open android studio and open that project. Hope this works well

Solution 7 - Dart

  1. Yes first update all your plugins related to flutter and dart .
  2. "AndroidAPK Support" plugin(install /enable /update).

3.This will work for all the AS , checked this on AS 3.4 also .

  1. Thanks to the guys who answered before me .

Solution 8 - Dart

I also ran into this issue and the steps above didn't work. What I did was check which plugins I have enabled and realized that Android APK Support and Android NDK Support was disabled in my AS. After enabling this and restarting android studio everything seems to be working correctly.

Solution 9 - Dart

This worked for me.

Install Dart and Flutter manually from Plugins:

  • Open Plugins (For Mac: Configure -> Plugins OR Android Studio -> Preferences -> Plugins)
  • Search for Dart -> Search in repositories -> Install -> Restart Android studio
  • Search for Flutter -> Search in repositories -> Install -> Restart Android Studio

Solution 10 - Dart

Got the same problem, fixed it by installing dart first using the plugin manager of android studio. Then install flutter plugin.

Solution 11 - Dart

How to set flutter wizard in Android Studio 3.0

  1. File > Close Project
  2. Configure > Check for Updates
  3. You will find Flutter and Dart updates. Update and Restart. Downloading Patch.
  4. File > New Flutter Project or Select new Flutter Project.

Hope your problem resolved. Happy Codings!!

Solution 12 - Dart

Do this Just Restore your IDE settings as shown in image

File -> Manage Ide Settings -> Restore default settings

This will remove your installed plugins and ask you again to install them.

Solution 13 - Dart

Update flutter using below command

> flutter upgrade

and again create flutter application from android studio

Solution 14 - Dart

For some reason, Flutter refused to show New Flutter Project in android studio 3.1

but when I use android studio 3.2 it works fine after installing Dart and flutter plugins.

Solution 15 - Dart

Make sure you have flutter and dart installed, then enable Android apk support; this helped me

Solution 16 - Dart

  1. Uninstall Flutter and Dart plugin

  2. Restart Android Studio

  3. Install Flutter Plugin (it will prompt you to install Dart plugin as well. Accept it)

  4. Restart Android Studio

Also, reminder to check whether the plugin is enabled or not. Go to Preferences -> Plugins -> Flutter/Dart. Although, it's enabled by default, you may have had to disable it at some point in the past. In that case, just enable it from Preferences -> Plugin -> Flutter/Dart if you want to.

Solution 17 - Dart

In my case I did not have APK/NDK support Plugin, added that and it worked. Of course restart IDE couple of times.

Solution 18 - Dart

Well go to command line and check flutter doctor , if all good give command to your project directory

flutter create appname

and import this to androidstudio , this will generate necessary plugins.

Solution 19 - Dart

It was little different in my case. After upgrading to newest release of Android studio. The dart flutter and other related plugins were in incompatible mode. You can check that by going to Android Studio=> Plugins.

I simply update those plugins and then restart the IDE and it works fine. Android studio 4. Plugin update window.

Solution 20 - Dart

I've got the same problem and finally sorted out. It's usually caused by your upgrade of Android Studio from 2.x to 3.x at the same time.

In short, it's because Flutter is not correctly configurated, but behind the scene there might be different reasons, so the universal solution is to run flutter doctor -v to diagnose and see what's missing.

[First make sure you've already followed the setup steps in Flutter's official documentation and have your Android SDK updated.]

In my own case, a couple of things to fix:

  1. Update the JAVA_HOME path in .bash_profile. Because I have 2 Java versions installed and so I updated it to use the same as Android Studio does. This is critical as flutter doctor relies on Java to check some of your configurations.

  2. Some Android licenses not accepted - follow flutter doctor's advice to accept all licenses.

  3. Android Studio's Flutter plugin version too low - simply update it.

Solution 21 - Dart

Even if you have done everything here,it may not work if you have Android Studio 4.x or canary It works only in lower version

Solution 22 - Dart

In my case I only miss Dart plugin so i installed and on IDE restart it was there

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionabaltaView Question on Stackoverflow
Solution 1 - DartmayiView Answer on Stackoverflow
Solution 2 - DartMirko RaimoView Answer on Stackoverflow
Solution 3 - DartVickyBOSSView Answer on Stackoverflow
Solution 4 - DartAxelView Answer on Stackoverflow
Solution 5 - Dartuzay95View Answer on Stackoverflow
Solution 6 - Dartsaurabh patelView Answer on Stackoverflow
Solution 7 - DartShavneetView Answer on Stackoverflow
Solution 8 - DartSmashingView Answer on Stackoverflow
Solution 9 - Dartnb2998View Answer on Stackoverflow
Solution 10 - DartZarView Answer on Stackoverflow
Solution 11 - DartpriyankjainView Answer on Stackoverflow
Solution 12 - DartNikhil SoniView Answer on Stackoverflow
Solution 13 - DartRamijView Answer on Stackoverflow
Solution 14 - DarthumazedView Answer on Stackoverflow
Solution 15 - DartChime FrancisView Answer on Stackoverflow
Solution 16 - DartdivView Answer on Stackoverflow
Solution 17 - DartovidiurView Answer on Stackoverflow
Solution 18 - DartVivek ShahView Answer on Stackoverflow
Solution 19 - DartprashantchaliseView Answer on Stackoverflow
Solution 20 - DartWei WANGView Answer on Stackoverflow
Solution 21 - DartSomal ChakrabortyView Answer on Stackoverflow
Solution 22 - DartEddy Yoel Fresno HernándezView Answer on Stackoverflow