Gradle设置
首先找到Gradle的用户目录,默认情况下在 C:\Users\你的用户名\.gradle
如果设置了 GRADLE_HOME
环境变量的话就是你设置的目录
找到家目录中的 init.gradle
文件,如果没有就新建一个
在其中添加如下代码
buildscript { repositories { maven { url 'https://maven.aliyun.com/repository/public' } maven { url 'https://maven.aliyun.com/repositories/jcenter' } } } allprojects { repositories { maven { url 'https://maven.aliyun.com/repository/public' } maven { url 'https://maven.aliyun.com/repositories/jcenter' } } }
仓库名 | 简介 | 实际地址 | 使用地址 |
---|---|---|---|
jcenter | JFrog公司提供的仓库 | http://jcenter.bintray.com |
https://maven.aliyun.com/repository/jcenter https://maven.aliyun.com/nexus/content/repositories/jcenter |
mavenLocal | 本台电脑上的仓库 | {USER_HOME}/.m2/repository | C:/Users/{USER_NAME}/.m2/repository (Windows) /home/{USER_NAME}/.m2/repository (Linux) |
mavenCentral | Sonatype公司提供的中央库 | http://central.maven.org/maven2 |
https://maven.aliyun.com/repository/central https://maven.aliyun.com/nexus/content/repositories/central |
Google公司提供的仓库 | https://maven.google.com |
https://maven.aliyun.com/repository/google https://maven.aliyun.com/nexus/content/repositories/google https://dl.google.com/dl/android/maven2 |
|
jitpack | JitPack提供的仓库 | https://jitpack.io | https://jitpack.io |
public | jcenter和mavenCentral的聚合仓库 |
https://maven.aliyun.com/repository/public https://maven.aliyun.com/nexus/content/groups/public |
|
gradle-plugin | Gradle插件仓库 | https://plugins.gradle.org/m2 |
https://maven.aliyun.com/repository/gradle-plugin https://maven.aliyun.com/nexus/content/repositories/gradle-plugin |