Due to project requirements, I recently started reading Android books. Although Google released Android Studio, its stability needs to be enhanced, so it chose the safest Development Environment ADT. Because my system is Windows 7x64, the ADT below is also x64. The following are the problems and solutions I encountered when configuring the development environment.
1. Install JDK first. Otherwise, neither SDK Manager nor eclipse can be opened.
2. After JDK is installed, eclipse can be opened, but the SDK Manager still cannot be opened, which is highlighted as a crash.
3. Find the. bat batch file find_java.bat in the path adt-bundle-windows-x86_64-20130522 \ sdk \ tools \ lib and open the file with notepad, as shown in
Find the rem Check we have a valid Java.exe line, change set java_exe = % a to set java_exe = "jdk directory", save and close the file.
4. re-open the SDK Manager and it will run normally.