First of all, I would like to say that if you search Baidu for "building an android development environment under win7", there will be a bunch of blog posts to teach you how to operate, JDK, SDK, eclipse and so on. But thanks to Google, it's not that difficult to build an android development environment now ~~
I. Required Software Installation packages
- JDK. : The current version of the http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html JDK 7, and then choose a page.
- ADT (Android developer tools ). : Http://developer.android.com/sdk/index.html
This is amazing, as shown below
With a single download, the ADT bundle provided des everything you need to begin developing apps:
Eclipse + ADT plugin
Android SDK tools
Android platform-Tools
The latest Android platform
The latest Android system image for the emulator Ii. Installation Steps
Step 1 install and configure JDK
1. Install JDK. InstallProgramFor jdk-6u22-windows-i586.exe, set the installation path to D: \ Android \ JDK.
2. Add the JDK path to the environment variable. Right-click "computer"-"properties"-select "Advanced System settings" in the upper-right corner-select "environment variable" in the lower-right corner-select "new" for system variables in the lower-right corner-the variable name is "java_home "", variable name. The variable value is "D: \ Android \ JDK", which is the JDK installation path.
3. Add the Lib path. Create a new system variable named "classpath" and the variable value is ".; % java_home % \ Lib; % java_home % \ Lib \ tools. jar, pay attention to the first "..
4. Add the bin path. The PATH variable already exists. Find "path" in the system variable, double-click to edit path, and add "; % java_home % \ bin" at the end of the variable value; % java_home % \ JRE \ bin ". Be sure to use"; "as the delimiter.
5. After installation and configuration, enter "Java-version" in the command line to view the JDK version.
Step 2 install ADT
1. Extract the downloaded adt-bundle-windows-x86-20130219.zip to the location you want, such as E :,.
2. In fact, the environment has been set up, which is super simple ~~
PS: 1. It looks like"Java-version"If there is a problem with copying under cmd, you should lose it by yourself. At that time, there was a problem with copying directly.
2. What seems to be missing in eclipse is a virtual phone. Create one by yourself ~~