Skip to content

Commit

Permalink
Fix some wrong imports
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippeBoisney committed Apr 11, 2019
1 parent ae1011b commit b0c19a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion android_feature_dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Expand All @@ -26,4 +27,5 @@ dependencies {
testImplementation TestLibraries.mockk
testImplementation TestLibraries.archCoreTest
kaptAndroidTest TestLibraries.databinding
testImplementation project(Modules.commonTest)
}

0 comments on commit b0c19a2

Please sign in to comment.