-
Notifications
You must be signed in to change notification settings - Fork 1
/
shared_dependencies.gradle
29 lines (25 loc) · 1.49 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
dependencies {
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation "androidx.core:core-ktx:$core_ktx_version"
implementation "androidx.constraintlayout:constraintlayout:$constraint_version"
implementation "androidx.legacy:legacy-support-v4:$legacy_support_version"
testImplementation "junit:junit:$junit_version"
androidTestImplementation "androidx.test.ext:junit:$androidx_junit_version"
androidTestImplementation "androidx.test.espresso:espresso-core:3.3.0"
implementation "androidx.cardview:cardview:$cardview_version"
implementation "androidx.recyclerview:recyclerview:$recyclerview_version"
implementation "com.google.android.material:material:$material_version"
implementation "com.github.bumptech.glide:glide:$glide_version"
// debugImplementation because LeakCanary should only run in debug builds.
debugImplementation "com.squareup.leakcanary:leakcanary-android:2.7"
//dagger
implementation "com.google.dagger:hilt-android:2.37"
kapt "com.google.dagger:hilt-android-compiler:2.37"
// Mockito
testImplementation "org.mockito:mockito-core:$mockito_version"
testImplementation "org.mockito:mockito-inline:$mockito_version"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockito_kotlin_version"
// Unit test Coroutines in viewModel
testImplementation "androidx.arch.core:core-testing:$arch_test_version"
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0-native-mt"
}