-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshared_dependencies.gradle
More file actions
21 lines (20 loc) · 1.1 KB
/
shared_dependencies.gradle
File metadata and controls
21 lines (20 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
dependencies {
implementation 'androidx.core:core-ktx:1.10.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.github.bumptech.glide:glide:4.13.2'
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.3'
implementation 'io.insert-koin:koin-core:3.4.2'
implementation 'io.insert-koin:koin-android:3.4.2'
implementation 'androidx.paging:paging-runtime-ktx:3.1.1'
implementation 'androidx.room:room-paging:2.6.0-alpha01'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:3.12.4'
testImplementation 'org.mockito:mockito-inline:3.12.4'
testImplementation 'androidx.arch.core:core-testing:2.2.0'
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.10'
}