How to easily configure the android Development Environment jdk + sdk and Android jdk sdk
AS installation + jdk installation, mainly jdk
AS: download the latest version of installation.
Both must configure environment variables.
> Configure environment variables in jdk
After jdk1.8.0 is successfully installed, You need to configure the environment variables:
Right-click the computer and choose Properties> advanced system settings. Click environment variable:
Note: The variable value configuration of a specific variable name is based on the jdk path installed by yourself. The above path is the default installation path for reference only.
Verify jdk version
> For sdk environment variables, see the following article.
Https://blog.csdn.net/feixiangsmile/article/details/67639664
-Main
-- The environment variables of 2 are: % JAVA_HOME % \ bin; % ANDROID_HOME % \ tools; % ANDROID_HOME % \ platform-tools
[Key point-the essence of a few words]
> You can find your own installation path and configure JAVA_HOME and ANDROID_SDK_HOME,
> Then copy and paste the following sentence in the path.
Environment Variables configured in my computer:
> Copy and paste the following section to the path.
% Android_SDK_HOME %/platform-tools; % Android_SDK_HOME % \ build-tools \ 25.0.3; % Android_SDK_HOME %/tools; % JAVA_HOME % \ bin
> Here, % Android_SDK_HOME %/platform-tools is required by the adb command, and it is best to match (genymotion can install apk directly by adb install ).