File tree Expand file tree Collapse file tree 4 files changed +4
-15
lines changed
Expand file tree Collapse file tree 4 files changed +4
-15
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ android {
5252
5353// Explicitly disable the connectedAndroidTest task for this module
5454androidComponents {
55- beforeVariants(selector().all()) { variant ->
55+ beforeVariants { variant ->
5656 variant.enableAndroidTest = false
5757 }
5858}
@@ -91,9 +91,4 @@ dependencies {
9191 testImplementation(libs.kotlinx.coroutines.test)
9292 testImplementation(libs.robolectric)
9393 testImplementation(libs.androidx.core)
94-
95- androidTestImplementation(libs.androidx.ui.test.junit4)
96- androidTestImplementation(libs.hilt.android.testing)
97- androidTestImplementation(projects.core.testing)
98- kspAndroidTest(libs.hilt.compiler)
9994}
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ android {
4141
4242// Explicitly disable the connectedAndroidTest task for this module
4343androidComponents {
44- beforeVariants(selector().all()) { variant ->
44+ beforeVariants { variant ->
4545 variant.enableAndroidTest = false
4646 }
4747}
@@ -61,11 +61,5 @@ dependencies {
6161 implementation(projects.feature.results)
6262 implementation(projects.watchface)
6363 implementation(projects.wear.common)
64-
6564 ksp(libs.hilt.compiler)
66-
67- androidTestImplementation(platform(libs.androidx.compose.bom))
68- androidTestImplementation(libs.androidx.ui.test.junit4)
69- androidTestImplementation(libs.hilt.android.testing)
70- kspAndroidTest(libs.hilt.compiler)
7165}
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ android {
3939}
4040// Explicitly disable the connectedAndroidTest task for this module
4141androidComponents {
42- beforeVariants(selector().all()) { variant ->
42+ beforeVariants { variant ->
4343 variant.enableAndroidTest = false
4444 }
4545}
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ android {
3838}
3939// Explicitly disable the connectedAndroidTest task for this module
4040androidComponents {
41- beforeVariants(selector().all()) { variant ->
41+ beforeVariants { variant ->
4242 variant.enableAndroidTest = false
4343 }
4444}
You can’t perform that action at this time.
0 commit comments