First look at how to speed up the update, and how to update.
First update the host file, open Directory C:\Windows\System32\drivers\etc, there is a hosts file in the directory
Open using Notepad
Copy the text into the Hosts file, save, note that the original file content is not modified, just attach the content
203.208.46.146 www.google.com
74.125.113.121 developer.android.com
203.208.46.146 dl.google.com
203.208.46.146 dl-ssl.google.com
Explain the principle: in the Hosts file to add these content why will speed up the download speed it?
Everyone knows that each site corresponds to an IP address, then we open the domain name, such as www.baidu.com, the DNS server will first resolve to the IP address, and then go to the access. Then we added the Android SDK in the hosts to get update link and download update link URL and corresponding IP address, the purpose is to eliminate the DNS resolution of this step, thus saving time and speed up the download speed.
- 2
Modify the HTTP request, instead of forcing the HTTP request, instead of the HTTPS request, the principle is to reduce the amount of data transfer, which will also speed up the download speed.
Open the Android SDK Manager, in the Options under Tools, there is a force https://..sources to be fetched using http://.
Check this one out and you can.
Let's see how to open the Android SDK manager for updates.
- 3
Open in Eclipse, or open the Android SDK Manager in your Android SDK installation path. My Android SDK installation path is E:\ANDROID_SDK\ANDROID_SDK.
- 4
Open the Android SDK Manager, you can see that there are updates/new, installed, obselete three options, for us, the update is mainly used to updates/new, so the other two options can not be checked. This will allow you to see the installation package that needs to be updated.
Tick the installation package you want to update, and click Install x packages in the lower right corner ... (x represents the number of updates), then select the installation package to update, select Accept, or accept all. Then click Install to update it.
END