-
Notifications
You must be signed in to change notification settings - Fork 0
/
shared_dependencies.gradle
64 lines (52 loc) · 2.97 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
dependencies {
implementation "androidx.core:core-ktx:$coreKtxVersion"
implementation "androidx.appcompat:appcompat:$appCompatVersion"
implementation "com.google.android.material:material:$materialVersion"
implementation "androidx.constraintlayout:constraintlayout:$cnstraintLayoutVersion"
implementation "androidx.fragment:fragment-ktx:$fragmentKtxVersion"
// Local Unit Tests
implementation "androidx.test:core:$testCoreVersion"
testImplementation "junit:junit:$jUnitVersion"
testImplementation "org.mockito:mockito-core:$mockitoCoreVersion"
testImplementation "org.mockito:mockito-inline:$mockitoInlineVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
testImplementation "androidx.arch.core:core-testing:$coreTestingVersion"
testImplementation "com.google.truth:truth:$truthVersion"
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesTestVersion"
// Instrumented Unit Tests
androidTestImplementation "androidx.test.ext:junit:$jUnitExtVersion"
androidTestImplementation "androidx.test:rules:$testRulesVersion"
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoCoreVersion"
androidTestImplementation "androidx.test.espresso:espresso-contrib:$espressoContribVersion"
androidTestImplementation "androidx.arch.core:core-testing:$coreTestingVersion"
androidTestImplementation "com.google.truth:truth:$truthVersion"
androidTestImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:$kotlinxCoroutinesTestVersion") {
// conflicts with mockito due to direct inclusion of byte buddy
exclude group: "org.jetbrains.kotlinx", module: "kotlinx-coroutines-debug"
}
// Recycler View
//noinspection GradleDependency
implementation "androidx.recyclerview:recyclerview:$recyclerViewVersion"
// Navigation Components
implementation "androidx.navigation:navigation-fragment-ktx:$navigationFragmentKtxVersion"
implementation "androidx.navigation:navigation-ui-ktx:$navigationUiKtxVersion"
// Espresso Idling Resource
implementation "androidx.test.espresso:espresso-idling-resource:$espressoIdlingResourceVersion"
// Glide
implementation "com.github.bumptech.glide:glide:$glideVersion"
kapt "com.github.bumptech.glide:compiler:$glideCompilerVersion"
// Kenburns View
implementation "com.flaviofaria:kenburnsview:$kenburnsViewVersion"
// Circle Image View
implementation "de.hdodenhof:circleimageview:$circleImageViewVersion"
// Koin
implementation "org.koin:koin-core:$koinVersion"
implementation "org.koin:koin-android:$koinVersion"
implementation "org.koin:koin-android-viewmodel:$koinVersion"
// Lottie
implementation "com.airbnb.android:lottie:$lottieVersion"
// Shimmer
implementation "com.facebook.shimmer:shimmer:$shimmerVersion"
// Play Services Location
implementation "com.google.android.gms:play-services-location:$playServicesLocation"
}