本文主要是介绍消除安卓SDK更新时的“https://dl-ssl.google.com refused”异常的方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
消除安卓SDK更新时的“https://dl-ssl.google.com refused”异常的方法
消除安卓SDK更新时的“https://dl-ssl.google.com refused”异常的方法
[转载]原地址:http://blog.csdn.net/x605940745/article/details/17911115
消除SDK更新时的“https://dl-ssl.google.com refused”错误
消除SDK更新时,有可能会出现这样的错误:
Download interrupted: hostname in certificate didn't match: != <<A href="http://www.google.com">www.google.com>
Download interrupted: Connection to https://dl-ssl.google.com refused
Done. Nothing was installed.
解决办法是:将https://修改为http://
修改方法是:如下图,在Android SDK Manager->Tools-Options...选项界面,
将“Force https://… sources to be fetched using http://…”勾选!
如果还有错,可以在文件(C:\Windows\System32\drivers\etc\hosts)中,添加如下几行:
203.208.46.146 www.google.com
203.208.46.146 dl.google.com
203.208.46.146 dl-ssl.google.com
这篇关于消除安卓SDK更新时的“https://dl-ssl.google.com refused”异常的方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!