-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshared_dependencies.gradle
51 lines (43 loc) · 2.77 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
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:$espresso_version"
implementation "androidx.multidex:multidex:$multidex_version"
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"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version"
implementation "com.makeramen:roundedimageview:$roundedImageVersion"
implementation "com.miguelcatalan:materialsearchview:$material_search_view_version"
implementation "com.geniusforapp.fancydialog:FancyDialog:$fancydialogVersion"
implementation "com.airbnb.android:lottie:$lottie_version"
implementation "com.flaviofaria:kenburnsview:$ken_burns_version"
implementation "com.facebook.shimmer:shimmer:$shimmer_version"
implementation "com.ramotion.cardslider:card-slider:$card_slider"
implementation "com.github.ibrahimsn98:SmoothBottomBar:$smooth_bottom_bar"
implementation "com.github.nabil6391:LottieSwipeRefreshLayout:$swipe_layout"
implementation "com.gauravk.bubblenavigation:bubblenavigation:$bubbleNavVersion"
//room
implementation "androidx.room:room-runtime:$room_version"
kapt "androidx.room:room-compiler:$room_version"
androidTestImplementation "androidx.room:room-testing:$room_version"
implementation "androidx.room:room-ktx:$room_version"
//dagger
implementation "com.google.dagger:hilt-android:$hilt_version"
kapt "com.google.dagger:hilt-android-compiler:$hilt_version"
//implementation "androidx.hilt:hilt-lifecycle-viewmodel:$hilt_jetpack_version"
kapt "androidx.hilt:hilt-compiler:$hilt_jetpack_version"
kaptAndroidTest "androidx.hilt:hilt-compiler:$hilt_jetpack_version"
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
implementation "com.squareup.retrofit2:converter-gson:$retrofit_version"
implementation "com.squareup.okhttp3:logging-interceptor:$logging_interceptor_version"
implementation "androidx.navigation:navigation-fragment-ktx:$navigation_version"
implementation "androidx.navigation:navigation-ui-ktx:$navigation_version"
// leak
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'
}