Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions core/network/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ android {

// Explicitly disable the connectedAndroidTest task for this module
androidComponents {
beforeVariants(selector().all()) { variant ->
beforeVariants { variant ->
variant.enableAndroidTest = false
}
}
Expand Down Expand Up @@ -91,9 +91,4 @@ dependencies {
testImplementation(libs.kotlinx.coroutines.test)
testImplementation(libs.robolectric)
testImplementation(libs.androidx.core)

androidTestImplementation(libs.androidx.ui.test.junit4)
androidTestImplementation(libs.hilt.android.testing)
androidTestImplementation(projects.core.testing)
kspAndroidTest(libs.hilt.compiler)
}
8 changes: 1 addition & 7 deletions core/testing/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ android {

// Explicitly disable the connectedAndroidTest task for this module
androidComponents {
beforeVariants(selector().all()) { variant ->
beforeVariants { variant ->
variant.enableAndroidTest = false
}
}
Expand All @@ -61,11 +61,5 @@ dependencies {
implementation(projects.feature.results)
implementation(projects.watchface)
implementation(projects.wear.common)

ksp(libs.hilt.compiler)

androidTestImplementation(platform(libs.androidx.compose.bom))
androidTestImplementation(libs.androidx.ui.test.junit4)
androidTestImplementation(libs.hilt.android.testing)
kspAndroidTest(libs.hilt.compiler)
}
2 changes: 1 addition & 1 deletion core/util/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ android {
}
// Explicitly disable the connectedAndroidTest task for this module
androidComponents {
beforeVariants(selector().all()) { variant ->
beforeVariants { variant ->
variant.enableAndroidTest = false
}
}
Expand Down
2 changes: 1 addition & 1 deletion data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ android {
}
// Explicitly disable the connectedAndroidTest task for this module
androidComponents {
beforeVariants(selector().all()) { variant ->
beforeVariants { variant ->
variant.enableAndroidTest = false
}
}
Expand Down