-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
55 lines (54 loc) Β· 1.95 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
buildscript {
ext {
coreKtxVersion = "1.9.0"
appcompatVersion = "1.5.1"
materialVersion = "1.7.0"
constraintlayoutVersion = "2.1.4"
junitVersion = "4.13.2"
junitUiVersion = "1.1.4"
espressoCoreVersion = "3.5.0"
firebaseVersion = "31.1.0"
googleServiceVersion = "4.3.14"
timberVersion = "5.0.1"
leakcanaryVersion = "2.10"
kotlinxCoroutinesVersion = "1.6.4"
paging3Version = "3.1.1"
navVersion = "2.5.3"
playServicesAuthVersion = "20.4.0"
hiltVersion = "2.44"
lottieVersion = "5.2.0"
activityKtxVersion = "1.6.1"
fragmentKtxVersion = "1.5.4"
lifecycleViewmodelKtxVersion = "2.5.1"
splashVersion = "1.0.0"
dataStoreVersion = "1.0.0"
viewPager2Version = "1.0.0"
shimmerVersion = "0.5.0"
desugarVersion = "2.0.0"
calendarVersion = "1.0.4"
glideVersion = "4.14.2"
roomVersion = "2.4.3"
naverMapVersion = "21.0.1"
naverMapVersion = "3.16.0"
googleLocationVersion = "21.0.1"
workManagerVersion = "2.7.1"
hiltWorkerVersion = "1.0.0"
hiltCompilerVersion = "1.0.0"
crashlyticsVersion = "2.9.2"
swipeRefreshLayoutVersion = "1.1.0"
mockitoAndroidVersion = "2.24.5"
mockitoInlineVersion = "3.5.13"
}
dependencies {
classpath "com.google.gms:google-services:$googleServiceVersion"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navVersion"
classpath "com.google.firebase:firebase-crashlytics-gradle:$crashlyticsVersion"
}
}
plugins {
id "com.android.application" version "7.3.1" apply false
id "com.android.library" version "7.3.1" apply false
id "org.jetbrains.kotlin.android" version "1.7.20" apply false
id "org.jetbrains.kotlin.jvm" version "1.7.20" apply false
id "com.google.dagger.hilt.android" version "2.44" apply false
}