-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathbuild.gradle
43 lines (41 loc) · 1.04 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
43
buildscript {
ext.buildConfig = [
'versionCode' : 1,
'versionName' : "1.0.0",
'compileSdkVersion': 30,
'minSdkVersion' : 14,
'targetSdkVersion' : 30
]
ext {
appCompatVersion = '1.3.1'
brvahVersion = '3.0.4'
constraintLayoutVersion = '2.1.1'
coreVersion = '1.7.0-alpha01'
espressoVersion = '3.4.0'
fragmentVersion = '1.3.6'
glideVersion = '4.12.0'
kotlinVersion = "1.5.31"
lifecycleVersion = '2.4.0-alpha03'
junitExtVersion = '1.1.3'
junitVersion = '4.13.2'
materialVersion = '1.3.0'
multiTypeVersion = '4.3.0'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}