Last active
September 23, 2018 08:58
-
-
Save Visionchen/e7659a5de7c62d52feb748b403c47d82 to your computer and use it in GitHub Desktop.
Android 的 SDK Manager 无法启动 闪退解决方法
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```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