New Flutter Project wizard not showing on Android Studio 3.0.1

别等时光非礼了梦想. 提交于 2020-06-22 05:28:24

问题


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.

回答1:


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:

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




回答2:


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

See this screenshot:




回答3:


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 !




回答4:


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"

After:




回答5:


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:




回答6:


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




回答7:


  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 .



回答8:


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.




回答9:


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




回答10:


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



回答11:


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.




回答12:


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!!




回答13:


Update flutter using below command

flutter upgrade

and again create flutter application from android studio




回答14:


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.




回答15:


  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.




回答16:


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



来源:https://stackoverflow.com/questions/49405321/new-flutter-project-wizard-not-showing-on-android-studio-3-0-1

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!