1

I have installed both flutter and Dart plugins on Android Studio but when I run flutter doctor, it shows that plugins are not installed

Doctor summary (to see all details, run flutter doctor -v):
[√]
 Flutter (Channel stable, 1.22.3, on Microsoft Windows [Version 10.0.18363.1139], locale en-US)
[√] Android toolchain - develop for Android devices (Android SDK version 30.0.2)
[!] Android Studio (version 4.1.0)
    X Flutter plugin not installed; this adds Flutter specific functionality.
    X Dart plugin not installed; this adds Dart specific functionality.
[√] VS Code (version 1.46.1)
[√] VS Code, 64-bit edition (version 1.51.0)
[√] Connected device (1 available)

! Doctor found issues in 1 category.
Chetan Joshi
  • 5,582
  • 4
  • 30
  • 43
Minsaf
  • 272
  • 1
  • 5
  • 14

2 Answers2

2

For anyone still having this issue on Android Studio Bumblebee 2021.1.1 Patch 2, running on Mac using Apple M1 Chip, the command should be ln -s ~/Library/Application\ Support/Google/AndroidStudio2021.1/plugins ~/Library/Application\ Support/AndroidStudio2021.1

Hope this helps.

manglide
  • 85
  • 1
  • 10
0

i had the same problem check: https://github.com/flutter/flutter-intellij/issues/4523

If you are on Mac: ln -s ~/Library/Application\ Support/Google/AndroidStudio4.1/plugins ~/Library/Application\ Support/AndroidStudio4.1

For windows and/or Linux you can try Flutter Dev channel:

flutter channel beta
flutter upgrade
Vesco
  • 138
  • 2
  • 15