在下载和更新 Android SDK 的时候,会出现访问速度很慢,而且下载、更新失败,提示 “Failed to fectch URl https://dl-ssl.google.com/android/repository/addons_list.xml, reason: Connection to https://dl-ssl.google.com refused”。这是由于我国特殊的国情造成的,解决办法如下:

Windows 系统:

  • 打开C:\WINDOWS\system32\drivers\etc中的hosts文件
  • 在最后一行添加74.125.237.1 dl-ssl.google.com


Linux 系统:
  • 打开/etc 下的hosts文件
  • 添加74.125.237.1 dl-ssl.google.com
完成上述步骤后,还 有可能会出现这样的错误:

Failed to fetch URL https://dl-ssl.google.com/android/repository/addons_list-2.xml, reason: hostname in certificate didn't match: <dl-ssl.google.com> != <www.google.com> OR <www.google.com>

解决办法是:将https://修改为http://
修改方法是:如下图,在Android SDK Manager->Tools-Options...选项界面,
将“Force https://… sources to be fetched using http://…”勾选!
Failed to fetch URL https://dl-ssl.google.com/android/repository/repository-10.xml, reason: HttpHost_第1张图片

如果还有错,可以在文件(C:\Windows\System32\drivers\etc\hosts)中,添加如下几行:
203.208.46.146www.google.com
203.208.46.146 dl.google.com
203.208.46.146 dl-ssl.google.com


更多相关文章

  1. Android系统源码数据库(mmssms.db)(转)
  2. Android ALSA音频系统架构分析(1)----从Loopback了解Audio
  3. android从raw里面读取txt文件
  4. android直接找一个文件,部分编译等实用
  5. Android 保存文件路径方法
  6. Android P 图形显示系统(四) Android VirtualDisplay解析
  7. Android引用百度定位API第三方组件后导致其它.so文件无法正常加

随机推荐

  1. Android图片堆叠效果实现
  2. Android EditText左右滑动
  3. Android PreferenceActivity 使用练习
  4. Unable to execute dex: Multiple dex fi
  5. Android APK文件安装过程小结
  6. android 一年过期
  7. Android(安卓)Nine-patch
  8. android studio配置AndroidAnnotations
  9. cocos2dx android平台事件系统解析
  10. 浅谈Android五大布局(一)——LinearLayout