Alice Bru
Alice Bru

Reputation: 45

Android SDK not found - but the folder exists

This is the result of flutter doctor :

Doctor summary (to see all details, run flutter doctor -v): [√] Flutter (Channel stable, v1.12.13+hotfix.9, on Microsoft Windows [Version 10.0.15063], locale en-US) [X] Android toolchain - develop for Android devices X ANDROID_HOME = C:\Users\Bert\AppData\Local\Android\Sdk but Android SDK not found at this location. [√] Android Studio (version 3.6) [!] Connected device ! No devices available

! Doctor found issues in 2 categories.

Upvotes: 0

Views: 955

Answers (3)

LEMON
LEMON

Reputation: 1

I had the same problem. I just check that the platform is also installed, because I found it missing. I had to (re)install it:

Screenshot

Upvotes: 0

NdamuleloNemakh
NdamuleloNemakh

Reputation: 3781

Try this:

flutter config --android_sdk="$HOME/Android/Sdk"
  • Make sure that you point to the actual directory where the sdk is installed on your machine (In my case it is installed at $HOME/Android/Sdk)

Upvotes: 0

Alice Bru
Alice Bru

Reputation: 45

Sigh...fixed it by reinstalled everything...

Upvotes: 0

Related Questions