Skip to content

Instantly share code, notes, and snippets.

@Visionchen
Last active September 23, 2018 08:58
Show Gist options
  • Select an option

  • Save Visionchen/e7659a5de7c62d52feb748b403c47d82 to your computer and use it in GitHub Desktop.

Select an option

Save Visionchen/e7659a5de7c62d52feb748b403c47d82 to your computer and use it in GitHub Desktop.
Android 的 SDK Manager 无法启动 闪退解决方法
```language
修改 android.bat,直接指定java.exe所在位置,
不用去调用find_java.bat将
rem Check we have a valid Java.exe in the path.
这行下面的set java_exe=
改为set java_exe=
"D:\Program Files\Java\jdk1.7.0_07\bin\java.exe"
(java.exe的所在位置)
call lib\find_java.bat
if not defined java_exe goto :EOF
这两行就可以删掉了现在一切Ok了!
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment