-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshared_dependencies.gradle
40 lines (34 loc) · 1.65 KB
/
shared_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
dependencies {
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation "androidx.constraintlayout:constraintlayout:$constraint_layout"
implementation "com.google.android.material:material:$material_version"
// Paging
api "androidx.paging:paging-runtime:$paging_version"
api "androidx.paging:paging-runtime-ktx:$paging_version"
testImplementation "androidx.paging:paging-common-ktx:$paging_version"
// KTX Core
implementation "androidx.core:core-ktx:$ktxcore_version"
testImplementation "androidx.arch.core:core-testing:$androidCoreTestVersion"
// Hilt
api "com.google.dagger:hilt-android:$hilt_version"
kapt "com.google.dagger:hilt-compiler:$hilt_version"
implementation "androidx.hilt:hilt-navigation-fragment:$hilt_navigation"
// Glide
implementation "com.github.bumptech.glide:glide:$glide_version"
kapt "com.github.bumptech.glide:compiler:$glide_version"
//Coroutine
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutine_version"
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutine_version"
/**
* Utils
*/
implementation "com.jakewharton.timber:timber:$timber_version"
implementation "com.airbnb.android:lottie:$lottie_version"
implementation "com.facebook.shimmer:shimmer:0.5.0"
// Testing
testImplementation "junit:junit:4.13.2"
testImplementation "org.mockito:mockito-core:$mockito_version"
testImplementation 'org.mockito:mockito-inline:4.0.0'
androidTestImplementation "androidx.test.ext:junit:1.1.3"
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}