-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (41 loc) · 1.01 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
buildscript {
repositories {
maven { url 'https://jitpack.io' }
maven {
url 'https://maven.aliyun.com/repository/central'
name 'central'
}
maven {
url 'https://maven.aliyun.com/repository/jcenter'
name 'jcenter'
}
maven {
url 'https://maven.aliyun.com/repository/google'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.4'
}
}
allprojects {
apply plugin: "idea"
repositories {
maven { url 'https://jitpack.io' }
maven {
url 'https://maven.aliyun.com/repository/central'
name 'central'
}
maven {
url 'https://maven.aliyun.com/repository/jcenter'
name 'jcenter'
}
maven {
url 'https://maven.aliyun.com/repository/google'
name 'Google'
}
flatDir {
dirs 'libs' // 申明本地库
}
}
}