-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshared_dependencies.gradle
43 lines (30 loc) · 1.21 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 {
//Livedata
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.7.0"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.7.0"
//lottie
implementation "com.airbnb.android:lottie:5.2.0"
//shimmer layout
implementation 'com.facebook.shimmer:shimmer:0.5.0'
//Glide
implementation 'com.github.bumptech.glide:glide:4.13.2'
//Youtube
implementation 'com.pierfrancescosoffritti.androidyoutubeplayer:core:12.1.0'
//Circle ImageView
implementation 'de.hdodenhof:circleimageview:3.1.0'
//
implementation "androidx.activity:activity-ktx:1.8.2"
implementation "androidx.fragment:fragment-ktx:1.6.2"
//hilt
// implementation ("com.google.dagger:hilt-android:2.44")
// ksp ("com.google.dagger:hilt-android-compiler:2.44")
//koin
implementation "io.insert-koin:koin-android:2.2.3"
//retrofit
implementation ("com.squareup.retrofit2:retrofit:2.9.0")
implementation ("com.squareup.retrofit2:converter-gson:2.9.0")
implementation ("com.squareup.okhttp3:logging-interceptor:4.9.3")
//android chart
implementation ("com.github.PhilJay:MPAndroidChart:v3.1.0")
implementation ("joda-time:joda-time:2.10.13")
}