Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

'Android sdkmanager tool found, but failed to run' for flutter doctor --android-licenses

I've been trying to setup flutter with android studio on my laptop (Windows 11), and as I tried to agree to the android licenses the below error occured : enter image description here

The first error in red says

'(C:\Users\jerry\AppData\Local\Android\Sdk\cmdline-tools\latest\bin\sdkmanager.bat): "ProcessException: Cannot find file specified'

Apologies for the Japanese.

Below are the SDK Platforms installed : enter image description here

Solutions attempted :

  • Installing 'Android SDK Command-line tools (latest)' and 'Android SDK Tools (Obsolete)' as suggested by this thread : Android SDK Tools option is missing from SDK Manager in Android Studio 3.6.1

enter image description here

  • Reinstalling Android studio
  • Updating the sdkmanager enter image description here
  • Checking PATH variables (JAVA_HOME in the System Variables set to C:\Program Files\Java\jdk1.8.0_351)
  • Running the command myself, which has allowed me to agree to the licenses, however the issue persists with the android licenses when flutter doctor is run. Running the exact command

I've tried my best at scouring the internet for solutions, but any help would be much appreciated. I have made another question for the

" 'git rev-parse HEAD' is not recognized as an internal or external command"

error here : " 'git rev-parse HEAD ' is not recognized" error when flutter doctor, but still works normally? I'm not sure if the two issues are connected, but if someone can also assist me on that issue I'd be extremely grateful.

like image 816
J930911 Avatar asked Dec 12 '25 02:12

J930911


2 Answers

It happen to me just now on my mac, after updating all sdk manager item to the latest version. Then, I downgrade the latest (version 11) Android SDK Commmad-Line Tools to version 10.

And it solve my problem.

SDK Manager - SDK Tools

like image 194
Alann Maulana Avatar answered Dec 13 '25 15:12

Alann Maulana


I also stumbled to this problem when i upgrade Android Studio Electric Eel | 2022.1.1 Patch 1 to Android Studio Electric Eel | 2022.1.1 Patch 2.

The old java_home is

C:\Program Files\Android\Android Studio\jre

The new java_home is

C:\Program Files\Android\Android Studio\jbr

After setting correct environment variable flutter doctor setup license run smothly. Hopefully it can help.

like image 40
santo Avatar answered Dec 13 '25 15:12

santo