android开发问题汇总
一. 无法创建新android项目
在eclipse创建新项目时出现:
this template depends on the android support library,which is either not installed,or the template depends on a more recent version than
the one you have installed。
Required version :8
解决办法:
运行sdk manager,勾选中Extras–>Android Support Library,下载完成后重启eclipse。二. 无法更新和下载androidSDK
打开SDK Manager时底部进度条一直不动,打开详细信息,发现卡在:
1 Fetching https://dl-ssl.google.com/android/repository/addons_list-2.xml
解决办法:
修改hosts文件。(1)windows下打开C:\Windows\System32\drivers\etc,以管理员身份编辑hosts文件,在最后添加:74.125.237.1 dl-ssl.google.com(2)linux下使用命令sudo vim /etc/hosts编辑hosts文件,同样在文件最后添加74.125.237.1 dl-ssl.google.com然后重新运行sdk manager,就可以下载了。