1、eclipse 2、android sdk(安装各版本的) 3、ADT的安装,我选择是在线安装 https://dl-ssl.google.com/android/eclipse
4、环境变量的配置 : new ANDRIOD PATH: F:Android softandroid-sdksplatform-tools;F:Android softandroid-sdks ools 同时在path 里加上 %andriod% cmd中输入adb进行测试
5、eclipse sdk location 把sdk加入到里查看安装一那些版本的andriod
android-sdk_r20.0.3-windows无法正常更新
在www.android.com下载最新版的android-sdk_r20.0.3-windows之后,点击SDK Manager.exe,发现无法显示Updates/New的内容,因此无法进行更新。
菜单Tools-->options中的Force https://...sources to be fetched using http://...勾选上之后,问题依旧。
最终解决方案:
在C:WINDOWSsystem32driversetc目录下,找到hosts文件,在文件末尾加上
74.125.237.1 dl-ssl.google.com
如下:
01 |
# Copyright (c) 1993-1999 Microsoft Corp. |
03 |
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows. |
05 |
# This file contains the mappings of IP addresses to host names. Each |
06 |
# entry should be kept on an individual line. The IP address should |
07 |
# be placed in the first column followed by the corresponding host name. |
08 |
# The IP address and the host name should be separated by at least one |
11 |
# Additionally, comments (such as these) may be inserted on individual |
12 |
# lines or following the machine name denoted by a '#' symbol. |
16 |
# 102.54.94.97 rhino.acme.com # source server |
17 |
# 38.25.63.10 x.acme.com # x client host |
20 |
74.125.237.1 dl-ssl.google.com |
问题得到解决。
![](http://static.oschina.net/uploads/space/2012/0908/075931_QWtq_172402.jpg)