0

I am experiencing difficulties when opening the SDK Manager in Android Studio. when i click the sdk manager icon in Android Studio a small window saying starting sdk manager it loads then nothing happens. I have set my environmental Variables and completed the installation process as told and done tons of research but i couldn't get a solution. I just do not know what to do anymore. Can U guys pleases help me? i am using a 32 bit windows 7 laptop.

4

1 回答 1

2

This happened to me too after I updated Android Studio from a beta version to 1.0. After trying all sorts of things including uninstalling and reinstalling, what finally worked for me was to modify find_java.bat to be hard-coded for 32-bit as described in this message:
https://code.google.com/p/android/issues/detail?id=82603

I just modified it like this:

rem reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" |^
rem find /i "x86" > NUL && set arch_ext=32|| set arch_ext=64
set arch_ext=32

and it was so great to finally see the SDK Manager come up again.

One of the things I had tried before that was following the "Can't Run SDK Manager (Broken find_java.bat)" instructions from this page:
http://tools.android.com/knownissues
but I already had the same versions of find_java.bat, find_java32.exe, and find_java64.exe that are in the find_java.zip file you can download on that page, so it didn't help me. But in case it would help you, there it is.

于 2014-12-16T06:39:16.303 回答