From 8f3ddca2a6d707e0fd51abe9f46bf05a50b2cd6b Mon Sep 17 00:00:00 2001 From: Marcel Hibbe Date: Wed, 24 Jul 2024 13:49:34 +0200 Subject: [PATCH] add version to androidx.compose.ui:ui-test-junit4 otherwise this will cause: Execution failed for task ':app:generateGplayDebugAndroidTestLintModel'. > Could not resolve all files for configuration ':app:gplayDebugAndroidTestRuntimeClasspath'. > Could not find androidx.compose.ui:ui-test-junit4:. Required by: project :app Signed-off-by: Marcel Hibbe --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 3c7a0935e..4008bab21 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -298,7 +298,7 @@ dependencies { debugImplementation("androidx.compose.ui:ui-tooling") //tests - androidTestImplementation("androidx.compose.ui:ui-test-junit4") + androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.6.8") debugImplementation("androidx.compose.ui:ui-test-manifest") testImplementation 'junit:junit:4.13.2'