We Are Going To Discuss About Flutter doctor –> Android toolchain – develop for Android devices (Android SDK version 32.1.0-rc1). So lets Start this Flutter Article.
Flutter doctor –> Android toolchain – develop for Android devices (Android SDK version 32.1.0-rc1)
Open android studio then go to settings then SDK manager. Check the command line tools if it’s not checked (most times it’s not), then finish and let it download that plugin
Open android studio then go to settings then SDK manager. Check the command line tools if it’s not checked (most times it’s not), then finish and let it download that plugin
Solution 1
Open android studio then go to settings then SDK manager. Check the command line tools if it’s not checked (most times it’s not), then finish and let it download that plugin
Original Author O’neya Of This Content
Solution 2
Check the Android SDK path.
Go to where flutter is installed flutter config –android-sdk android_sdk_path
execute the command.
ex) flutter config –android-sdk C:\tools\AndroidSDK
Original Author Gyuhak Lee Of This Content
Solution 3
- Run this
flutter config --android-sdk <path where you saved Android studio SDK>
for e.g. in my case it wasflutter config --android-sdk D:\AS_SDK
(basically navigate SDK to the custom location). - Go to Android Studio, on the first page where you start a project, find the option to look for more settings, there you go to SDK manager and then select and install “Android SDK Command-line Tools (latest)” (size at the time of writing this is 108.9mb).
- Now that you have the Android SDK navigated to the correct location and the latest command-line tools installed, run this
flutter doctor --android-licenses
and for every question it asks while confirming the licenses say “y“.
Original Author Siddharth Upadhyay Of This Content
Conclusion
So This is all About This Tutorial. Hope This Tutorial Helped You. Thank You.