Pilki
Pilki

Reputation: 33

Plugin Flutter not working, Android Studio

Flutter is not running on my Android Studio correct, the emulator does not open the Standart beginning App. I believe it is because of some internal mixed up. I reinstalled everything without success. Right now when I run flutter doctor this is shown: flutter doctor

Can I put the plugins manually in some Folder? Because opening Android Studio and just downloading the plugin does not change anything. Although I can now create flutter Projects and come as far as writing the code but not seeing the app. Any Response is helpfull!

Upvotes: 1

Views: 5293

Answers (2)

Shakib Uz-Zaman
Shakib Uz-Zaman

Reputation: 621

Your flutter doctor clearly shows that the correct plugins(Dart and Flutter) are not installed. To install the plugins just follow the steps:

  • File->Settings->Plugins-> Type/ To see options. Here search for flutter.
  • Install the plugin and restart the Android Studio.
  • If you face any kind of problem after restarting try doing the following: File-> Invalidate Caches/ Restart

Upvotes: 1

Srilal Sachintha
Srilal Sachintha

Reputation: 1405

Based on the Flutter doctor output, your android studio is missing Flutter and Dart Plugins. to install them,

Open Android Studio and open settings and go to plugins and search for Flutter. install it and the Dart plugin. then restart the android studio

Upvotes: 0

Related Questions