欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android SDK Manager解决更新时的问题 :Failed to fetch URL...

程序员文章站 2024-03-07 14:01:33
         failed to fectch url https://dl-ssl.g...

         failed to fectch url https://dl-ssl.google.com/android/repository/addons_list.xml, reason: connection to https://dl-ssl.google.com refused

       安装使用sdk manager更新时出现问题 failed to fetch url  https://dl-ssl.google.com/android/repository/repository-6.xml, reason:  connection to https://dl-ssl.google.com refused failed to fetch  url http://dl-ssl.google.com/android/repository/addons_list-1.xml, reason:  connection to http://dl-ssl.google.com refused failed to fetch  url https://dl-ssl.google.com/android/repository/addons_list-1.xml, reason:  hostname in certificate didn‘t match: <dl-ssl.google.com> != < www.google.com> 更新adt时无法解析https://dl-ssl.google.com/android/eclipse

解决办法

最好的方法还是改hosts文件的方法,更新速度较快。

windows在c:\windows\system32\drivers\etc目录下,linux用户打开/etc/hosts文件。 打开文件后添加以下内容。

#google主页

203.208.46.146 www.google.com

#这行是为了方便打开android开发官网 现在好像不翻也可以打开

74.125.113.121 developer.android.com

#更新的内容从以下地址下载

203.208.46.146 dl.google.com

203.208.46.146 dl-ssl.google.com

添加以上的网址,再选用http协议,就可以正常的进行更新了

选用http协议

打开sdk manager.exe,选中tool栏,点android sdk manager ,在下面force https://...sources to be fetched using http://... 打上勾就行了,这个主要是把受保护的协议 https 转成普通http。

以上就是对 android sdk manager 更新问题的解决办法,后续继续补充相关资料,谢谢大家对本站的支持!