Reputation: 1257
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.
Upvotes: 83
Views: 67420
Reputation: 1
just make sure you enable the Android Apk Support and its will work for sure
Upvotes: -1
Reputation: 288
I had the same issue sometime ago even after installing both Dart and Flutter plugins for intelliJ, I fixed it like this...
STEP ONE: Click "Repair IDE"
STEP TWO: Click "Rescan Project Indexes" at the bottom
STEP THREE: Click "Reopen Project" at the bottom
Upvotes: 3
Reputation: 165
In my case I only miss Dart plugin so i installed and on IDE restart it was there
Upvotes: 0
Reputation: 939
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.
Upvotes: 5
Reputation: 506
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.
Upvotes: 3
Reputation: 380
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.
Upvotes: 2
Reputation: 338
In my case I did not have APK/NDK support Plugin, added that and it worked. Of course restart IDE couple of times.
Upvotes: 1
Reputation: 31
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
Upvotes: 0
Reputation: 1579
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!
Et voilà! Now everything should be fine:
You can find the plugin menu inside the Welcome page
or, when you have a project opened, inside the Preferences menu:
Upvotes: 66
Reputation: 21
Make sure you have flutter and dart installed, then enable Android apk support; this helped me
Upvotes: 2
Reputation: 1533
Uninstall Flutter and Dart plugin
Restart Android Studio
Install Flutter Plugin (it will prompt you to install Dart plugin as well. Accept it)
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.
Upvotes: 1
Reputation: 16632
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.
After installing these plugins you can check if it is ok or not with flutter doctor
If you hadn't installed the plugins you would have this:
Android Studio
At first, I didn't see "Start a new Flutter project"
Upvotes: 38
Reputation: 528
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:
After the last restart I saw the success message:
I assume we both installed both plugins without restarting after Dart.
Upvotes: 48
Reputation: 111
3.This will work for all the AS , checked this on AS 3.4 also .
Upvotes: 11
Reputation: 1710
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.
Upvotes: 9
Reputation: 461
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 !
Upvotes: 46
Reputation: 76922
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.
Upvotes: 2
Reputation: 1778
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:
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.
Some Android licenses not accepted
- follow flutter doctor's advice to accept all licenses.
Android Studio's Flutter plugin version too low - simply update it.
Upvotes: 0
Reputation: 31
Update flutter using below command
flutter upgrade
and again create flutter application from android studio
Upvotes: 2
Reputation: 469
This worked for me.
Install Dart and Flutter manually from Plugins:
Upvotes: 6
Reputation: 31
How to set flutter wizard in Android Studio 3.0
Hope your problem resolved. Happy Codings!!
Upvotes: 3
Reputation: 745
Got the same problem, fixed it by installing dart first using the plugin manager of android studio. Then install flutter plugin.
Upvotes: 6
Reputation: 141
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
Upvotes: 14