Original:. Net moving Android 4.4 daily notes (5)--new software Android Studio 0.5.8 installation and configuration and problem solving
To tell you the truth, Eclipse is better than our. NET vs. Gaofu, everything is so hard, so slow I can't stand it
So you want to try Google's hand-picked Android Studio IDE tool, which is an integrated tool like ADT, and requires the installation of Java JDK
1. Download the latest jdkhttp://developers.sun.com/downloads/I am downloading the JDK1.7 version, the installation process can first configure environment variables
- The following environment variables are added to the system variables, such as environment variables, properties---
- The Java_home value is: Install JDK directory, my C:\Program files\java\jdk1.7 (installation time has a path selection, copy down)
- The Classpath value is:.; %java_home%\lib\tools.jar;%java_home%\lib\dt.jar;%java_home%\bin; (Note the preceding ".;" To add, if not new)
- Path: Append at start.; %java_home%\bin;%java_home%\jre\bin; (Note the preceding ".;" To add, if not new)
After the installation is complete, you can check that the JDK is installed successfully. Open the cmd window and enter Java–version to view the version information for the JDK. Installation is successful when version information appears
2. Download the latest version of Android Studio
- Click Next, automatically detect the computer JDK, if the environment variable is not set up this way to prompt search:
- Click Next, select the right to use, the first is all users, the second for the current user to choose their own, here I select all users:
- Click Next to select the path you want to install
- Click Next, select the location in the Start menu, select Default here
- Click Next to display the installation progress, wait for the installation to complete
- Click Next when the installation is complete
- Tick start Android Studio Click Finish to open the tool
If the item appears when you first use the new project, the project is always in the building "project name" Gradle Project info
The reason for this is that there was a problem downloading the Gradle package
Locate the version of the Gradle and the storage location.
View Gradle version: View directory C:\Users\ user name \.gradle\wrapper\dists\gradle-1. Xx-all
Storage location: C:\Users\ user name \.gradle\wrapper\dists\gradle-1. Xx-all\3jdgemv0iv8uqohg3kcp2o88r1\gradle-1. Xx-all.zip
Know the version, know the location, the rest is to download the offline package online, search gradle-1. Xx-all.zip,
My version for Gradle-1.10-all.zip downloaded directly after the zip copy to
C:\Users\ User name \.gradle\wrapper\dists\gradle-1. Xx-all\3jdgemv0iv8uqohg3kcp2o88r1\. After you restart Android Studio, open the project.
Experience the new IDE and discover that Android Studio is not a legendary deity, and that starting the AVD is still slow. Sometimes the interface still has the phenomenon of lag, but I believe this thing will definitely replace Eclipse, because it is more comfortable to use, smart tips are also very satisfied.
. Net moving Android 4.4 daily notes (5)-new software for Android Studio 0.5.8 installation and configuration and problem solving