1

I'm using mac os Mojave and android studio for flutter. whenever I create a new Flutter project in the android studio, it is showing that please configure Android SDK. Android SDK is already configured and flutter doctor checked it successfully. I invalidate the cache and restarted the android studio but nothing worked for me. I configured flutter using official flutter website

Suragch
  • 484,302
  • 314
  • 1,365
  • 1,393
Abhijith Brumal
  • 1,652
  • 10
  • 14
  • Possible duplicate of [Android Studio not showing Logcat with Flutter](https://stackoverflow.com/questions/51007784/android-studio-not-showing-logcat-with-flutter) – Suragch Jan 03 '19 at 22:52

1 Answers1

0

I had the same problem, the solution as follows :

  1. Open a Flutter project in Android Studio.
  2. Click on File -> Project Structure.
  3. Select the Project tab, under Project Settings.
  4. At the main screen, we should see No SDK in red under the Project SDK section.
  5. Click on the dropdown menu and select an API version installed. Example: Android API 30 platform.
  6. Click OK.
  7. Restart Android Studio (I prefer to restart your mac)
Jeremy Caney
  • 7,102
  • 69
  • 48
  • 77