Skip to content Skip to sidebar Skip to footer

Sdk Manager Not Starting

When i click on SDK manager in the eclipse, it does not start. Rather it displaying following message Android\tools\lib\\find_java.exe -s' is not recognized as an internal or exte

Solution 1:

Try these steps:

Open up /tools/android.bat in your favorite text editor

Search for this piece of code:

set java_exe=
calllib\find_java.bat
ifnot defined java_exe goto :EOF

Replace it with this:

set java_exe="<Path of your JDK>\bin\java.exe"

java_exe will be the static path is the path to your Java exe.

Run android.bat

Solution 2:

Not sure if this is the solution your looking for, but when I set file path variables I use 2 backslashes instead of one. So it would be

C:\\Program Files\\Java\\jdk1.7.0\\jre\\bin;
D:\\Android-SDK\\adt-bundle-windows-x86-20130911\\adt-bundle-windows-x86-20130911\\sdk\\tools;
C:\\Program Files\\PC Connectivity Solution\\; 

Solution 3:

I guess there is a problem with the find_java.bat file. Please refer to the thread here https://code.google.com/p/android/issues/detail?id=28196

Post a Comment for "Sdk Manager Not Starting"