android SDK问题: !=

通过SDK Manager进行更新时,总是提示

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

很多网友也都说这些更新网站访问不了,大概是https 与 http的原因,https协议涉及到网站信息的加密,总是会出现问题。网上提供的一种解决方法是在SDK Manager ->Tools里面设置,将https强制转化为http连接。可是我怎么也总不到这个选项,尝试Add new  external add-on sites (以http协议传输),仍然失败,错误信息如下:

ERROR: Failed to fetch URL http://dl-ssl.google.com/android/repository/addons_list-1.xml, reason: hostname in certificate didn't match: !=

究竟该如何通过http协议访问更新呢? 功夫不负有心人,求助万能的Google,终于发现另一种解决方案!

找到C:\Documents and Settings\Administrator\.android\androidtool.cfg文件,在最后一行加入

sdkman.force.http=true

保存,关闭,打开eclipse->SDK Manager, checked tools下面的两个方件夹,开始SDK Tools和SDK platform-tools的更新。

重启,测试Hello Android, 问题解决!

你可能感兴趣的:(android SDK问题: !=)