Android Studio3.2 and Java jdk installation and environment configuration

1. Software resources

1.1. Java jdk1.8 version link : https://pan.baidu.com/s/18kLCDw2Qf4cePkRJ5-lB-A extraction code: 5wqw
1.2.Android studio3.2 : http://www.android-studio.org/index .php / download
1.3.Android SDK : Download inside Android studio3.2.

2. Environment variable configuration 2.1.
Java jdk1.8 environment configuration
2.1.1. New system variable JAVA_HOME
Insert picture description here
2.1.2. Add path path
① Double-click Path in system variable
② Stand-alone new
③ Enter% JAVA_HOME% \ bin
Insert picture description here
2.1.3. Inspection
①window + R input cmd ②input
java -version
Insert picture description here
2.2.Android studio environment configuration
2.2.1. New system variables ①Open
android studio and select tools-SDK Manage to find the sdk directory
Insert picture description here
②New system variable Android_HOME, the variable value is the sdk directory
Insert picture description here
2.2.2. Add path path
① Double-click Path in the system variable
② Stand-alone new
③ Enter% ANDROID_HOME% \ tools
④ Stand-alone new
⑤ Enter% ANDROID_HOME% \ platform-tools
Insert picture description here
2.2.3. Test
①window + R input cmd ②Enter
adb
Insert picture description here

Published 11 original articles · Like1 · Visit 200

Guess you like

Origin blog.csdn.net/weixin_43919927/article/details/103883477