我在编译插件时一直在下载fastutil-xxx.jar
原因是需要翻墙(可惜我试过了,没用)。剩下的方法就是改镜像源了,在主要编译文件,如build.gradle
,找到主代码组里头将镜像源改了。
我一改完就好了,不仅不用挂梯子,甚至速度贼快
buildscript {
repositories {
maven{ url = "http://maven.aliyun.com/nexus/content/groups/public/" }
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven{ url = "http://maven.aliyun.com/nexus/content/groups/public/" }
google()
jcenter()
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23