-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshared_dependencies.gradle
31 lines (28 loc) · 1.54 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
dependencies {
implementation 'com.airbnb.android:lottie:3.4.0'
implementation 'androidx.core:core-ktx:1.8.0'
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
testImplementation "org.mockito:mockito-core:3.12.4"
testImplementation "org.mockito:mockito-inline:3.12.4"
testImplementation "androidx.arch.core:core-testing:2.1.0"
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"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.0"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.5.0"
implementation "androidx.recyclerview:recyclerview:1.2.1"
implementation "androidx.activity:activity-ktx:1.5.0"
implementation "androidx.paging:paging-runtime-ktx:3.1.1"
implementation 'com.github.bumptech.glide:glide:4.13.1'
implementation 'androidx.room:room-ktx:2.5.0-alpha02'
implementation 'androidx.room:room-paging:2.5.0-alpha02'
implementation 'com.github.bumptech.glide:glide:4.13.1'
kapt 'androidx.room:room-compiler:2.5.0-alpha02'
implementation "io.insert-koin:koin-android"
implementation "io.insert-koin:koin-android:3.2.0"
}