diff --git a/android_feature_dependencies.gradle b/android_feature_dependencies.gradle index c9fc4eb..425dbe3 100644 --- a/android_feature_dependencies.gradle +++ b/android_feature_dependencies.gradle @@ -7,7 +7,7 @@ apply from: '../../android_commons.gradle' dependencies { implementation project(Modules.common) - implementation project(Modules.commonTest) + implementation project(Modules.repository) implementation project(Modules.navigation) // KOIN (Because each feature has to handle its dependencies) @@ -16,6 +16,7 @@ dependencies { // TEST androidTestImplementation TestLibraries.androidTestRunner androidTestImplementation TestLibraries.junit + androidTestImplementation project(Modules.commonTest) androidTestImplementation TestLibraries.mockkAndroid androidTestImplementation TestLibraries.fragmentNav androidTestImplementation TestLibraries.espresso @@ -26,4 +27,5 @@ dependencies { testImplementation TestLibraries.mockk testImplementation TestLibraries.archCoreTest kaptAndroidTest TestLibraries.databinding + testImplementation project(Modules.commonTest) } \ No newline at end of file