-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathshared_dependencies.gradle
52 lines (42 loc) · 2.45 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
dependencies {
implementation "androidx.core:core-ktx:$coreKtxVersion"
implementation "androidx.appcompat:appcompat:$appCompatVersion"
implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion"
implementation "androidx.legacy:legacy-support-v4:$legacySupportVersion"
implementation "androidx.navigation:navigation-fragment:$navigationFragmentVersion"
implementation "androidx.navigation:navigation-ui:$navigationUiVersion"
implementation "androidx.navigation:navigation-fragment-ktx:$navigationFragmentKtxVersion"
implementation "androidx.navigation:navigation-ui-ktx:$navigationUiKtxVersion"
implementation "androidx.recyclerview:recyclerview:$recyclerViewVersion"
implementation "com.google.android.material:material:$materialVersion"
implementation "com.github.bumptech.glide:glide:$glideVersion"
// Retrofit
implementation "com.squareup.retrofit2:retrofit:$retrofitVersion"
implementation "com.squareup.retrofit2:converter-gson:$retrofitGsonVersion"
implementation "com.squareup.okhttp3:logging-interceptor:$loggingInterceptorVersion"
// RxJava
implementation "io.reactivex.rxjava2:rxjava:$rxjavaVersion"
implementation "io.reactivex.rxjava2:rxandroid:$rxandroidVersion"
implementation "com.squareup.retrofit2:adapter-rxjava2:$retrofitVersion"
implementation "androidx.room:room-rxjava2:$roomVersion"
implementation "com.jakewharton.rxbinding2:rxbinding:$rxbindingVersion"
// Koin
implementation "io.insert-koin:koin-core:$koin_version"
implementation "io.insert-koin:koin-android:$koin_version"
implementation "io.insert-koin:koin-android-viewmodel:$koin_version"
// Timber
implementation "com.jakewharton.timber:timber:$timberVersion"
// Shimmer
implementation "com.facebook.shimmer:shimmer:$shimmerVersion"
// Leak Canary
debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion"
// Unit Testing
testImplementation "junit:junit:$junitVersion"
testImplementation "org.mockito:mockito-inline:$mockitoVersion"
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:$mockitoKotlinVersion"
testImplementation "androidx.arch.core:core-testing:$coreTestingVersion"
androidTestImplementation "androidx.room:room-testing:$roomVersion"
// Dagger Hilt
implementation "com.google.dagger:hilt-android:$daggerHiltVersion"
kapt "com.google.dagger:hilt-android-compiler:$daggerHiltVersion"
}