Sdk Manager.Exe Doesn't Work

Can't get Android SDK Manager to open

Open cmd,

go to android sdk folder,

in tools/lib/, edit find_java.bat,

you will see the lines like below, add black line to your file and save.

rem Check we have a valid Java.exe in the path. The return code will

rem be 0 if the command worked or 1 if the exec failed (program not

found). for /f %%a in ('%~dps0\find_java.exe -t') do set java_exe=%%a

this

set java_exe="C:\Program Files\Java\jdk1.7.0_11\bin\java.exe"

if not defined java_exe goto :CheckFailed

:SearchJavaW

rem Check if we can find a javaw.exe at the same location

than java.exe. rem If that doesn't work, just fall back on the

java.exe we just found. for /f %%a in ('%~dps0\find_java.exe -t -w')

do set javaw_exe=%%a if not exist %javaw_exe% set javaw_exe=%java_exe%

set javaw_exe="C:\Program Files\Java\jdk1.7.0_11\bin\java.exe"

i hope it helps

Android SDK manager won't open

Make sure your java\bin directory is in your path statement before the windows\system32 directory.
The SDK Manager uses java and it was finding the one in the system32 folder.

In a CMD window, you can run 'where java'.
Don't forget to restart your CMD after changing the path variable for checking.

Android - AVD Manager and SDK Manager not loading

The standalone GUIs previously in the Android SDK for AVD & SDK management were deprecated: https://developer.android.com/studio/releases/sdk-tools.html

The replacement are command line tools or the GUI tools inside of Android Studio:

  • SDKManager - https://developer.android.com/studio/command-line/sdkmanager.html
  • AVD Manager - https://developer.android.com/studio/command-line/avdmanager.html

Android SDK Manager won't start/open

Android currently support up to Java 7 (JDK 1.7). If you use JDK 1.8, it won't work.

Also, assuming you're using Java 7, set up JAVA_HOME in Environment Variables by pointing it to C:\Program Files\Java\jdk1.7.0_71 so the Android SDK Manager knows which Java version to use.

On Windows 64-bit, Environment Variables can be accessed by going to Start | Control Panel | System | Advanced System Settings | System Properties | Advance | Environment Variables option. Note: You may need to restart Windows for the changes to take effect.

CAVEAT: On Windows 8.1, if the above steps fail, then install the Android SDK from the installer_r23.0.2-windows.exe executable which can be downloaded from here. Also, ensure that you uninstall JDK 1.8 from Windows 8.1 and only use JDK 1.7 with Android SDK Manager (or 1.6 if you need it).



Related Topics



Leave a reply



Submit