-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshared_dependencies.gradle
43 lines (35 loc) · 1.9 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
dependencies {
//base
implementation "androidx.core:core-ktx:$core_ver"
implementation "androidx.appcompat:appcompat:$appcompat_ver"
implementation "com.google.android.material:material:$material_ver"
implementation "androidx.preference:preference-ktx:$preference_ver"
testImplementation "junit:junit:$junit_ver"
androidTestImplementation "androidx.test.ext:junit:$test_junit_ver"
androidTestImplementation "androidx.test.espresso:espresso-core:$test_espresso_ver"
implementation "androidx.multidex:multidex:$multidex_ver"
//UI
implementation "androidx.constraintlayout:constraintlayout:$constraint_layout_ver"
implementation "androidx.recyclerview:recyclerview:$recylcerview_ver"
implementation "androidx.viewpager2:viewpager2:$viewpager2_ver"
implementation "androidx.cardview:cardview:$cardview_ver"
implementation "com.github.bumptech.glide:glide:$glide_ver"
kapt("com.github.bumptech.glide:compiler:$glide_ver")
//Navigation
implementation "androidx.navigation:navigation-fragment-ktx:$navigation_ver"
implementation "androidx.navigation:navigation-ui-ktx:$navigation_ver"
//Lifecycle
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_ver"
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:$lifecycle_ver"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_ver"
implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_ver"
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_ver"
//Dependency Injection
implementation "io.insert-koin:koin-core:$koin_ver"
implementation "io.insert-koin:koin-android:$koin_ver"
implementation "io.insert-koin:koin-android-viewmodel:$koin_ver"
//Fancy Toast
implementation 'io.github.shashank02051997:FancyToast:2.0.1'
//Lottie
implementation "com.airbnb.android:lottie:$lottie_ver"
}