【Android】两步搞定AndroidSDKManager在线更新SDK版本失败问题

两步搞定AndroidSDKManager在线更新SDK版本失败问题

一、问题描述

    利用AndroidSDKManager在线更新SDK版时,总是提示如下错误

    Failed to fetch URL https://dl-ssl.google.com/android/repository/repository-6.xml,reason: Connection to https://dl-ssl.google.comrefused
    Failed to fetch URL http://dl-ssl.google.com/android/repository/addons_list-1.xml,reason: Connection to http://dl-ssl.google.com refused

    ……等无法访问的错误

二、解决办法

    1、修改hosts文件

    用记事本打开C:\WINDOWS\system32\drivers\etc目录下的hosts文件,然后添加以下内容,效果如图

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


【Android】两步搞定AndroidSDKManager在线更新SDK版本失败问题_第1张图片

    2、强制使用http协议

    在SDK Manager下依次打开Tools->Options,选中“Force https://… sources to be fetched using http://…”,强制使用http协议.

【Android】两步搞定AndroidSDKManager在线更新SDK版本失败问题_第2张图片

    完成以上两步以后,再更新SDK,看看效果吧,速度biubiu地往上蹿

你可能感兴趣的:(android)