From c0fbafe2f7904dddf5aa697d3ea289c2ecd87af0 Mon Sep 17 00:00:00 2001 From: David Göransson Date: Mon, 19 Jan 2026 09:00:27 +0100 Subject: Add dependency to espresso Previously we accidentally used espresso transitively, this caused us to run an outdated version that would cause the tests to fail. --- android/app/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 03cc6ee6c4..a92e4cf730 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -476,4 +476,5 @@ dependencies { androidTestImplementation(libs.turbine) androidTestImplementation(libs.junit.jupiter.api) androidTestImplementation(libs.junit5.android.test.compose) + androidTestImplementation(libs.androidx.espresso) } -- cgit v1.3-3-g829e