最近刚换了电脑,开始搭建Android开发环境的时候,下载SDK总是会出现如下错误:
- Failed to fetch URL http://dl-ssl.google.com/android/repository/addons_list-1.xml.
据说dl-ssl.google.com在大陆被强了,伟大的天朝真是不让人活了,解决方法就是修改
C:WindowsSystem32driversetchosts文件。添加一行:
- 74.125.237.1 dl-ssl.google.com
这里需要注意的是hosts文件是只读的,我们没有权限修改,需要我们将hosts文件复制到桌面或者其他地方,然后修改,代码如下:
- # Copyright (c) 1993-2009 Microsoft Corp.
- #
- # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
- #
- # This file contains the mappings of IP addresses to host names. Each
- # entry should be kept on an individual line. The IP address should
- # be placed in the first column followed by the corresponding host name.
- # The IP address and the host name should be separated by at least one
- # space.
- #
- # Additionally, comments (such as these) may be inserted on individual
- # lines or following the machine name denoted by a "#" symbol.
- #
- # For example:
- #
- # 102.54.94.97 rhino.acme.com # source server
- # 38.25.63.10 x.acme.com # x client host
-
- # localhost name resolution is handled within DNS itself.
- # 127.0.0.1 localhost
- # ::1 localhost
- //亲,就是增加这一句哦
- 74.125.237.1 dl-ssl.google.com
然后保存,复制修改后的hosts文件到
C:WindowsSystem32driversetc 目录,替换文件就好!!!我们再次下载SDK的时候就会成功啦,如下图: 嘿嘿,大功告成啦!!!PS:补充下,在mac或Linux中,hosts文件所在位置为
/etc/hosts,可以使用
sudo vim /etc/hosts来编辑。更多关于Android SDK的详细信息,或者下载地址请点这里
更多Android相关信息见Android 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=11GT240下简单安装Ubuntu 10.10及更高版本Ubuntu的方法Ubuntu 更新时出现校验和不符解决办法相关资讯 Android应用开发
- 提高Android应用开发效率的小工具 (05月01日)
- 《Android应用开发》.((美)Chris (03/06/2014 16:54:38)
- Android 中强制关掉指定的应用 (02/18/2013 08:19:27)
| - 在Android迷你广告上添加浮动的关 (11/06/2014 16:16:26)
- Android 应用开发者必看的 9 个 (01/20/2014 09:02:15)
- Android 应用开发笔记 - 图片视图 (09/16/2012 10:44:31)
|
本文评论 查看全部评论 (3)
评论声明- 尊重网上道德,遵守中华人民共和国的各项有关法律法规
- 承担一切因您的行为而直接或间接导致的民事或刑事法律责任
- 本站管理人员有权保留或删除其管辖留言中的任意内容
- 本站有权在网站内转载或引用您的评论
- 参与本评论即表明您已经阅读并接受上述条款
| |
第 3 楼 匿名 发表于 2013/5/23 20:30:03试了,还是没有出现啊,难度又被屏了