Reputation: 45
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
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:
Upvotes: 0
Reputation: 3781
Try this:
flutter config --android_sdk="$HOME/Android/Sdk"
Upvotes: 0