forked from DylanCaiCoding/MMKV-KTX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (40 loc) · 1.05 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 {
ext.buildConfig = [
'versionCode' : 1,
'versionName' : "1.0.0",
'compileSdkVersion': 30,
'minSdkVersion' : 16,
'targetSdkVersion' : 30
]
ext {
appCompatVersion = '1.3.1'
constraintLayoutVersion = '2.1.1'
coreVersion = '1.7.0-alpha01'
espressoVersion = '3.4.0'
kotlinVersion = "1.8.0"
junitExtVersion = '1.1.3'
junitVersion = '4.13.2'
lifecycleLivedataVersion = '2.3.1'
materialVersion = '1.4.0'
mmkvVersion = '1.3.1'
startupVersion = '1.1.0'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:4.2.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}