-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
31 lines (24 loc) · 1.04 KB
/
config.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
ext {
compileSdkVersion = 30
minSdkVersion = 21
targetSdkVersion = 30
// 依赖库 & 版本
libs = [
"org.jetbrains.kotlin:kotlin-stdlib-jdk7" :"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version",
"androidx.appcompat:appcompat" :"androidx.appcompat:appcompat:1.2.0",
"androidx.core:core-ktx" :"androidx.core:core-ktx:1.3.2",
"androidx.constraintlayout:constraintlayout":"androidx.constraintlayout:constraintlayout:2.0.4",
"junit:junit" :"junit:junit:4.12",
"androidx.test.ext:junit" :"androidx.test.ext:junit:1.1.1",
"androidx.test.espresso:espresso-core" :"androidx.test.espresso:espresso-core:3.2.0",
]
}
allprojects {
repositories {
maven { url "https://maven.aliyun.com/repository/central" }
maven { url "https://maven.aliyun.com/repository/google" }
maven { url "https://maven.aliyun.com/repository/jcenter" }
jcenter()
google()
}
}