2

I have started with the setup of flutter updated version and am a total beginner in this platform. This is the error I have been getting. Could you please help me? enter image description here

Md. Yeasin Sheikh
  • 54,221
  • 7
  • 29
  • 56
Sathvika
  • 21
  • 2
  • 1
    Does this answer your question? [Android/Sdk is missing a Tools folder, meaing no sdkmanager, meaning "Android license status unknown" error](https://stackoverflow.com/questions/60462340/android-sdk-is-missing-a-tools-folder-meaing-no-sdkmanager-meaning-android-li) – Md. Yeasin Sheikh Feb 02 '22 at 10:01

4 Answers4

2

You have to install Android SDK Command-line Tools (in SDK Manager).

enter image description here

After Installing, accept the android licensces (in CMD)

flutter doctor --android-licenses
Sobin Benny
  • 181
  • 1
  • 8
0

Either install Android Studio to get the required dependecies or download an android sdkmanager and check its path (path/to/sdkmanager should be the path to that).

To avoid any problems for beginners, I would just install Android Studio here, set it up until it installs the android sdk, then switch to Flutter: that was the only way to fix this since some time ago if I remember correctly

rikyeah
  • 1,896
  • 4
  • 11
  • 21
0

Please first run this command

flutter doctor --android-licenses

then follow this link : Android/Sdk is missing a Tools folder, meaing no sdkmanager, meaning "Android license status unknown" error

Hardik Mehta
  • 2,195
  • 1
  • 11
  • 14
0
  • Create a directory (android-sdk) to install android-sdk

  • Download Command Line Tools

  • Create a directory and Uncompres Command Line Tools to android-sdk/cmdline-tools/latest folder

  • Add android-sdk/cmdline-tools/latest/bin to PATH

  • run:

yes | sdkmanager "platform-tools" "build-tools;33.0.1" "platforms;android-30" "sources;android-30"
  • add to path: android-sdk/platform-tools

maybe you need run flutter doctor --android-licenses

Ready!! can run flutter doctor again

for windows and mac it's the same