From 104f90993ca07935517e5c25f8071ae47885874f Mon Sep 17 00:00:00 2001 From: "h.malik144@gmail.com" Date: Thu, 31 Aug 2023 09:22:04 +0100 Subject: [PATCH] - Gradle dependencies cleaned up --- app/build.gradle | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 2510878..1cd4869 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -64,10 +64,10 @@ dependencies { testImplementation "org.mockito:mockito-inline:$MOKITO_INLINE_VERSION" testImplementation "androidx.arch.core:core-testing:$CORE_TEST_VERSION" testImplementation 'org.mockito:mockito-core:2.19.0' - testImplementation 'io.mockk:mockk-dsl-jvm:1.10.5' / * MockK * / testImplementation "io.mockk:mockk:$MOCKK_VERSION" androidTestImplementation "io.mockk:mockk-android:$MOCKK_VERSION" + testImplementation "io.mockk:mockk-dsl-jvm:$MOCKK_VERSION" / * Android Espresso * / androidTestImplementation "androidx.test.espresso:espresso-core:$ESPRESSO_VERSION" androidTestImplementation "androidx.test.espresso:espresso-idling-resource:$ESPRESSO_VERSION" @@ -80,9 +80,8 @@ dependencies { / *Kodein Dependency Injection * / implementation "org.kodein.di:kodein-di-generic-jvm:$KODEIN_VERSION" implementation "org.kodein.di:kodein-di-framework-android-x:$KODEIN_VERSION" - - implementation 'org.kodein.di:kodein-di-core-jvm:6.2.1' - implementation 'org.kodein.di:kodein-di-framework-android-core:6.2.1' + implementation "org.kodein.di:kodein-di-core-jvm:$KODEIN_VERSION" + implementation "org.kodein.di:kodein-di-framework-android-core:$KODEIN_VERSION" / * jxl * / implementation "net.sourceforge.jexcelapi:jxl:$JEXCEL_VERSION" }