Cannot find SDK Manager.exe in Android SDK folder

I need to install some packages in the Android SDK Manager, but there is no .exe file in my SDK folder (there are only AVD manager and folders). How can I find him? My SDK works fine with Android Studio, no problem, it's strange that the SDK Manager.exe does not exist.

+3
source share
4 answers

I had to install an older version of https://dl.google.com/android/installer_r24.4.1-windows.exe and update it. Worked from there

+6
source

I found C: \ NVPACK \ android-sdk-windows \ tools \ android.bat

When I started it, he called the SDK manager.

Which was nice, because I could not find the SDK Manager in the folder C: \ NVPACK \ android-sdk-windows \ lib, as I was told that it will be there.

+1
source

To open the SDK Manager from Android Studio, click "Tools"> "Android"> "SDK Manager" or click "SDK Manager" on the toolbar. If you are not using Android Studio, you can download tools using the sdkmanager command line tool.

Check out this link: https://developer.android.com/studio/intro/update.html#sdk-manager

0
source

Go to android_sdk / tools / bin / open cmd and type sdkmanager and press enter. You can use the command line for it

0
source

Source: https://habr.com/ru/post/1270646/


All Articles