-
Notifications
You must be signed in to change notification settings - Fork 1
/
shared_dependencies.gradle
26 lines (26 loc) · 1.8 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
dependencies {
implementation "androidx.core:core-ktx:$core_version"
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation "androidx.legacy:legacy-support-v4:$legacy_support_version"
implementation "com.google.android.material:material:$material_version"
implementation "androidx.constraintlayout:constraintlayout:$constraint_layout_version"
implementation "androidx.recyclerview:recyclerview:$recylcerview_version"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$arch_lifecycle_version"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$arch_lifecycle_version"
implementation "androidx.navigation:navigation-fragment-ktx:$arch_lifecycle_version"
implementation "androidx.lifecycle:lifecycle-reactivestreams-ktx:$arch_lifecycle_version"
implementation "androidx.navigation:navigation-ui-ktx:$arch_lifecycle_version"
implementation "androidx.activity:activity-ktx:$activity_version"
implementation "androidx.fragment:fragment-ktx:$fragment_version"
testImplementation "junit:junit:$junit_version"
androidTestImplementation "androidx.test.ext:junit:$junit_ext_version"
androidTestImplementation "androidx.test.espresso:espresso-core:$espresso_version"
implementation "com.github.bumptech.glide:glide:$glide_version"
kapt "com.github.bumptech.glide:compiler:$glide_version"
debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakcanary_android_version"
implementation "com.google.dagger:dagger:$dagger_version"
kapt "com.google.dagger:dagger-compiler:$dagger_version"
implementation "androidx.datastore:datastore-preferences:$datastore_pref_version"
implementation "com.airbnb.android:lottie:$lottie_android_version"
implementation "com.facebook.shimmer:shimmer:$shimmer_facebook_version"
}