Standalone SDK Manager option in Android Studio 2.3

Android StudioAndroid Studio-2.3

Android Studio Problem Overview


I have recently updated Android Studio from 2.2.3 to 2.3. Now can't see the option "Launch Standalone SDK Manager", which is useful to check for updates, google play services, etc.

Android Studio Solutions


Solution 1 - Android Studio

It is a deprecated feature: https://code.google.com/p/android/issues/detail?id=235625 There is an option in Android Studio to "Show Package Details".

> For manual SDK and AVD management, please use Android Studio. > For command-line tools, use tools/bin/sdkmanager and tools/bin/avdmanager

See also: https://www.reddit.com/r/androiddev/comments/5x6adh/android_studio_23_is_now_available_in_the_stable/deg48lj/

Solution 2 - Android Studio

Even I had this issue when I updated to Android Studio 2.3

Click on Configure on the bottom left side

Then select SDK Manager

Select the Check Box to Show Package Details on the bottom left side

Select the Check Box to Show Package Details on the bottom left side

Move between the different tabs as per your requirements.

Solution 3 - Android Studio

Can't working on Android Studio 2.3.3


On Mac :

> /Users/YourAccount/Library/Android/sdk/tools

click android, you'll see standalone SDK manager


On Windows :

> C:\Productivity\android-sdks\tools

double click on android.bat, standalone SDK Manger will be launched (see image below).

SDK location

Solution 4 - Android Studio

As the standalone sdk manager has been deprecated in favor of studio builtin sdk manager, there's a workaround to get back the standalone sdk manager.

Step1.
Download command line sdk tools for your platform:
http://dl.google.com/android/installer_r24-windows.exe
http://dl.google.com/android/android-sdk_r24-windows.zip

the links refer to an old distribution intentionally (see note below).

Step2.
Copy the SDK Manager.exe, tools/android.bat and tools/lib/archquery.jar into your existing sdk to which android studio is currently being pointed.

Step3.
Run SDK Manager or tools/android.bat and you will get back your beloved standalone sdk manager while having latest android studio > 2.3

Note
if you download latest command line tools for sdk, you wont be able to find the archquery.jar which is required to run the standalone sdk utility.

Solution 5 - Android Studio

In this latest version (2.3.1 and 2.3.1+), after some digging, I found a faster way to open AVD and SDK: In the welcome interface of Android Studio, after pressing CTRL+SHIFT+A, a search box will jump out, then you can input "AVD", the AVD manager will come out. To open SDK is the same way.

[![][1]][1] [1]: https://i.stack.imgur.com/8DMpl.png

However, AVD does not work in the welcome interface but SDK works. If you want to use CTRL+SHIFT+A to quickly open AVD you must create a new project and open AVD in the project interface.

Solution 6 - Android Studio

If you are a Xamarin user, you can install the Xamarin Android SDK Manager, available on the Visual Studio Marketplace which will give you an interface like this:

enter image description here

> NOTE: The Xamarin SDK manager has to be accessed from visual studio, but it will (should) work on both windows and mac

Solution 7 - Android Studio

You can open it from your SDK path which in my case is

>C:\Users\Akshay\AppData\Local\Android\sdk

enter image description here

Double click on SDK Manager.exe and it will open standalone SDK manager, refer attached Screenshot.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionKrishna MeenaView Question on Stackoverflow
Solution 1 - Android StudioJared RummlerView Answer on Stackoverflow
Solution 2 - Android StudioJoseph VargheseView Answer on Stackoverflow
Solution 3 - Android StudioHenryChuangView Answer on Stackoverflow
Solution 4 - Android StudioQasimView Answer on Stackoverflow
Solution 5 - Android StudiozqerView Answer on Stackoverflow
Solution 6 - Android StudioFelipeView Answer on Stackoverflow
Solution 7 - Android StudioAkshay KatariyaView Answer on Stackoverflow