Update to Android Studio 4.1 ,flutter plugin and dart plugin not Installed

29,265

Solution 1

I solve this problem like this

Only for MacOS

$ ln -s ~/Library/Application\ Support/Google/AndroidStudio4.1/plugins ~/Library/Application\ Support/AndroidStudio4.1

Solution 2

Switch from Flutter 1.22.2 channel stable to channel dev and you're good to go.

Copy and paste this in your cmd:

flutter channel dev

flutter upgrade

Solution 3

It is a flutter issue on 1.22 version, and happens after upgrading to Android Studio 4.1. It was already fixed on 1.23 version (dev channel). You can continue to run and work on your projects normally until this fix isn't ported to stable channel, or you can swith to dev channel and call flutter upgrade.

Solution 4

As said above, it is just a time-being issue. You can change channels by running flutter channel dev. To know available channels you can run flutter channel

Solution 5

Try the following:

  • Open Android Studio
  • Go to Preference -> Plugins
  • Search for Flutter plugin and install flutter plugin

It will install all the dependent plugins like the dart plugin etc.

Run "flutter doctor -v" and you will see that the issue is resolved.

enter image description here

Share:
29,265
Kasun Hasanga
Author by

Kasun Hasanga

I`m Mobile app Developer from Sri lanka.

Updated on March 27, 2021

Comments

  • Kasun Hasanga
    Kasun Hasanga about 3 years

    I have got a similar question like this. But this problem occurred after updating Android Studio to version 4.1 from version 4.0.

    using flutter flutter doctor -v

    enter image description here