Is Gui for Android Sdk Manager Gone

Is GUI for Android SDK manager gone?

Looks like I'm not the only one who had to deal with this idiocy. The way to install it

  1. Unpack zip to some /parent folder so it has /parent/tools. I extracted content of zip's tools to /androidsdk and it was mistake. Script couldn't find it.
  2. Set ANDROID_HOME to /parent folder.
  3. Run /parent/tools/android sdk to see SDK Manager's GUI.

Google, was it hard to leave script that does the above in installation zip so people don't need to waste 40 minutes googling around ?

Android Studio 2.3 Windows: AVDManager and SDkManager UI are gone?

After some research, it seems that the old apps aren't available anymore. Instead you should use the manager inside Android Studio:

Android Studio Android SDK

And the same should be done with the AVD Manager (Tools > Android > AVD Manager).

As a i work with Cordova, I did not think of it before. I hope that this help the people that have the same problem that i had.

SDK Manager is greyed out

As far as I know the current versions of Android Studio have been released without SDK included by default. You can download it here http://dl.google.com/android/android-sdk_r23.0.2-linux.tgz, and install in a folder different from your AS installation since it's important now.

AS usually asks you for a path to SDK location if it cannot find it.

Hope this helps.

Android sdk manager not working in visual studio 2022 for mac monterey

I have the same problem. I worked around it, by using the SDK Command Prompt in Visual Studio 2022 (Tools->SDK Command Prompt). I have version 17.0.2 (build 8) Community Version.
Once in the terminal, change into cmdline-tools/[version]/bin.
You can then list available packages:

./sdkmanager --list

You can install various packages:

./sdkmanager --install "system-images;android-26;default;x86"
./sdkmanager --install "platforms;android-26"

Restart Visual Studio to see the changes applied. I was then able to create a device for testing.



Related Topics



Leave a reply



Submit