Gradle下载地址:
https://services.gradle.org/distributions/
找到自己想下载的版本下载之后
复制下载的包到下面目录下即可
C:\Users\用户名.gradle\wrapper\dists\对应的gradle版本文件夹\自动生成的文件夹、
下载失败尝试在根build添加镜像
repositories {
//阿里云地址
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/gradle-plugin' }
}