Android Learning Environment Building
Park has a lot of information about the environment of Android Development, I am a beginner of Android development, here to record a personal build Android environment summary.
1. Prepare eclipse IDE for Java developers
Online can be downloaded version or more, I chose the eclipse-java-luna-sr2-win32.
Website: HTTP://WWW.ECLIPSE.ORG/DOWNLOADS/PACKAGES/ECLIPSE-IDE-JAVA-DEVELOPERS/LUNASR2
Note: The official dot click the download button after the page to jump to the following:
This is not a charge page, just a donation. Wait a minute and then the Download box pops up:
2. Android SDK
Download the SDK for Android
Just download the SDK is not a few Android development related version of the platform, you need to download through the SDK Manager.exe.
3. Preparing ADT
This is the Android Developer tools,android as a plug-in form developed in Eclipse.
4.JDK
Install the JDK before you build the Android environment:
Install the appropriate version as needed:
Installation directory folder contents:
5. Install. Help->intall new software
Add:archive to Adt-23.0.4.zip file
Note: The Environment variables (java_home,path) for the JDK need to be configured first
6. Environment variable Configuration:
installation directory for JAVA_HOME:JDK
Path:;%java_home%\bin
Classpath:%java_home%\bin;.; %java_home%\lib\rt.jar;%java_home%\lib\tools.jar
Path:;%sdk_home%\tools
7.window->perferences
Select the SDK location and click Apply to load the Android platform version included with the SDK.
END
Android Learning Environment Building