Unknown host 'downloads.gradle.org'. You may need to adjust the proxy settings in Gradle

上段时间导入第三方项目报错:Unknown host 'downloads.gradle.org'. You may need to adjust the proxy settings in Gradle

如下图:

解决方式:

找的连接 http://services.gradle.org/distributions/,但是唯独 gradle-4.10.2-all.zip包 下载不了!

android项目中是通过gradle管理依赖库的,当我们往android项目添加一个依赖库的时候,gradle会从国外中央仓库中将jar包下载下来,因为访问的是国外网站,所以经常会出现下载缓慢甚至是下载连接超时情况,下面介绍一种配置国内阿里云镜像仓库地址方式解决,在项目Project的build.gradle中添加下面代码,即可下载

maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}

build.gradle (Module: app)里面添加,添加完成后会自动下载

Unknown host 'downloads.gradle.org'. You may need to adjust the proxy settings in Gradle_第1张图片

 

而后项目,还报错误:No cached version available for offline mode

因为上面配置了国内阿里云镜像仓库地址方式,直接根据提示更新即可,大概更新下载了5分钟左右!!!

 

 

参考链接:

https://www.jianshu.com/p/0fd492140b18

你可能感兴趣的:(错误累积)