-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshare_dependencies.gradle
41 lines (34 loc) · 1.35 KB
/
share_dependencies.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
dependencies {
implementation coreDependencies.filetree
implementation coreDependencies.kotlinStdlib
// Retrofit
implementation coreDependencies.retrofit
implementation coreDependencies.converterGson
implementation coreDependencies.loggingInterceptor
// Coroutine Flow
implementation coreDependencies.coroutinesCore
implementation coreDependencies.coroutinesAndroid
implementation coreDependencies.roomKtx
implementation coreDependencies.lifecycleLivedataKtx
// Dagger Hilt
implementation coreDependencies.daggerHilt
implementation coreDependencies.hiltLifecycle
kapt coreDependencies.daggerHiltCompiler
kapt coreDependencies.hiltCompiler
// UI
implementation uiDependencies.constraintLayout
implementation uiDependencies.cardview
implementation uiDependencies.recyclerview
implementation uiDependencies.googleMaterial
implementation uiDependencies.glide
// Security
implementation coreDependencies.zeteticSqlChiper
implementation coreDependencies.sqliteKtx
// Testing
testImplementation testDependencies.junit4
testImplementation testDependencies.mockito
testImplementation testDependencies.mockitoInline
testImplementation testDependencies.archCore
testImplementation testDependencies.coroutines
debugImplementation debugDependencies.leakCanary
}