I have a problem in installing flutter, I really need to solve it

Viewed 168

This is my issue in installing flutter do any one know how to solve it ?

Screenshot

2 Answers

Run the commands mentioned in the console.

sdkmanager is in \tools\bin in Android SDK folder.

Run

ANDROID_SDK_PATH\tools\bin\sdkmanager.bat  --install "cmdline-tools;latest"

Then, Run

flutter doctor --android-licenses

Step 1) Open android studio go to sdk manager select Android SDK Command-line tools and click apply wait for it to to install enter image description here

Step 2) After following step 1 open PowerShell and write flutter doctor --android-licenses

and accept all by pressing y repeatedly after accepting all run flutter doctor again all it will be perfect.

Related