How to install Android SDK Windows Windows How to install Android SDK

Windows How to install Android SDK

We all know that Android and IOS App test is divided into two kinds of clients, when we tested Android App version of the often install the Android environment, then install the Android SDK is essential, then we take a look at how to install Android SDK.
 
First, the software download:
Adt-bundle-windows-x86_64-20140321.zip you download from the network disk, here we provide a 64-bit adt, if you are a 32-bit system, please download the 32-bit adt.
Links: https://pan.baidu.com/s/1bp73Qn9 Password: 4c2i
 
Second, configure the environment variables:
It was good after downloading unpack, put itself in a directory, open the file after extracting the following folder found inside a file or folder, as shown:
eclipse: This is the ADT compressed package that comes with Eclipse, support the development of Android, does not require configuration. But now I suggest that you use Android Studio.
sdk: This is the Android SDK, we configure the environment variables configured here.
SDK Manager: to manage and update the SDK to download a manager.
 
Then we have to configure the environment variables:
ANDROID_HOME this environment variable to specify the sdk folder, for example: ANDROID_HOME = C: \ Users \ zhaowei \ Desktop \ software \ adt-bundle-windows-x86_64-20140321 \ sdk
Increase the value of the PATH environment variable as follows:
PATH=%ANDROID_HOME%\tools;%ANDROID_HOME%\platform-tools;%ANDROID_HOME%\build-tools\android-4.4.2;
 
Third, to verify:
1, the configuration environment variables, re-open cmd, performed adb version, the representative configuration appears as shown correctly.
2, after starting Genymotion start a simulator, as shown:
3, the input adb devices in cmd appears proven successful as shown below:
 

This whole process is to install the Android SDK Configuration

We all know that Android and IOS App test is divided into two kinds of clients, when we tested Android App version of the often install the Android environment, then install the Android SDK is essential, then we take a look at how to install Android SDK.
 
First, the software download:
Adt-bundle-windows-x86_64-20140321.zip you download from the network disk, here we provide a 64-bit adt, if you are a 32-bit system, please download the 32-bit adt.
Links: https://pan.baidu.com/s/1bp73Qn9 Password: 4c2i
 
Second, configure the environment variables:
It was good after downloading unpack, put itself in a directory, open the file after extracting the following folder found inside a file or folder, as shown:
eclipse: This is the ADT compressed package that comes with Eclipse, support the development of Android, does not require configuration. But now I suggest that you use Android Studio.
sdk: This is the Android SDK, we configure the environment variables configured here.
SDK Manager: to manage and update the SDK to download a manager.
 
Then we have to configure the environment variables:
ANDROID_HOME this environment variable to specify the sdk folder, for example: ANDROID_HOME = C: \ Users \ zhaowei \ Desktop \ software \ adt-bundle-windows-x86_64-20140321 \ sdk
Increase the value of the PATH environment variable as follows:
PATH=%ANDROID_HOME%\tools;%ANDROID_HOME%\platform-tools;%ANDROID_HOME%\build-tools\android-4.4.2;
 
三、进行验证:
1、配置好环境变量后,重新打开cmd,执行adb version,出现如下图所示代表配置正确。
2、启动Genymotion后启动一个模拟器,如图:
3、在cmd中输入 adb devices,出现如下图所示证明成功:
 

这就是安装配置Android SDK的全部过程

Guess you like

Origin www.cnblogs.com/brainchan/p/10971836.html