Android Development Environment configuration in Windows
Install JRE and JDK (note that 32bit and 64bit are different)Http://www.oracle.com/technetwork/java/javase/downloads/index.html JAVA_HOME value: D: \ Program Files \ Java \ jdk1.6.0 _ 18 (you install JDK directory) CLASSPATH value :.; % JAVA_HOME % \ lib \ tools. jar; % JAVA_HOME % \ lib \ dt. jar; % JAVA_HOME % \ bin; Path: append % JAVA_HOME % \ bin at the beginning;
Test: Enter java-version to view the JDK version.
Install Eclipse (32bit/64bit)The http://www.eclipse.org/downloads/ creates a PATH in the user variable with the absolute PATH of tools and platform-tools in the Android SDK
Restart the computer
Inspection:
Run android-h to view related information.
Install ADT in EclipseHttp://developer.android.com/sdk/installing/installing-adt.html 2, SVN and ReviewBoard Installation
TortoiseSVN InstallationHttp://tortoisesvn.net/downloads.html
Subversion InstallationThe http://subversion.apache.org/packages.html adds the installation path of the Subversion to the path
ReviewBoard InstallationHttp://www.reviewboard.org/docs/manual/1.6/users/tools/post-review/
Install PythonHttp://www.python.org/
Install Python's setuptoolsThe current way to https://pypi.python.org/pypi/setuptools is to copy the ez_setup.py (http://files.cnblogs.com/wizchen/ez_setup.rar) file to the Python directory and double-click it to run. A compressed package and one more Scripts directory will be downloaded after the script runs successfully.
Install RBToolsCmd go to the Scripts directory in Python and execute easy_install-U RBTools to add the paths of Python \ and Python \ Scripts to path.
Install diffutilsHttp://gnuwin32.sourceforge.net/packages/diffutils.htm download installed, add the bin directory to the environment variable Path on the line
Restart the computer
Configure REVIEWBOARD_URL
In the workspace root directory (~) Create a file. the reviewboardrc file cannot be created. If you right-click it to rename it, it will fail. Therefore, the cmd command line rename the old rename name. reviewboardrc input content: REVIEWBOARD_URL = 'HTTP ://*****'
Configure the Android development environment in Linux
Android Development Environment configuration in MACOS