-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
57 lines (47 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
gradleVersion = '7.3.1'
kotlinVersion = '1.7.21'
googleServicesVersion = '4.3.14'
crashlyticsVersion = '2.9.2'
navigationVersion = '2.5.3'
}
}
plugins {
id 'com.android.application' version "$gradleVersion" apply false
id 'com.android.library' version "$gradleVersion" apply false
id 'org.jetbrains.kotlin.android' version "$kotlinVersion" apply false
id 'com.google.gms.google-services' version "$googleServicesVersion" apply false
id 'com.google.firebase.crashlytics' version "$crashlyticsVersion" apply false
id 'androidx.navigation.safeargs.kotlin' version "$navigationVersion" apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
appCompatVersion = '1.5.0'
coreVersion = '1.8.0'
lifecycleVersion = '2.5.1'
materialVersion = '1.6.1'
splashScreenVersion = '1.0.0'
junitVersion = '4.13.2'
junitExtVersion = '1.1.3'
espressoVersion = '3.4.0'
roomVersion = '2.4.3'
sqlCipherVersion = '4.5.2'
sqliteVersion = '2.2.0'
retrofitVersion = '2.9.0'
moshiVersion = '1.14.0'
chuckerVersion = '3.5.2'
coroutinesVersion = '1.6.1'
koinVersion = '3.2.2'
firebaseVersion = '31.0.2'
leakcanaryVersion = '2.9.1'
loggerVersion = '2.2.0'
timberVersion = '5.0.1'
aaChartCoreVersion = '-SNAPSHOT'
coilVersion = '2.2.2'
lottieVersion = '5.2.0'
shimmerVersion = '0.5.0'
}