summaryrefslogtreecommitdiffhomepage
path: root/android
diff options
context:
space:
mode:
Diffstat (limited to 'android')
-rw-r--r--android/app/build.gradle.kts1
-rw-r--r--android/buildSrc/src/main/kotlin/Dependencies.kt2
-rw-r--r--android/buildSrc/src/main/kotlin/Versions.kt1
3 files changed, 0 insertions, 4 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts
index b05e604b64..e5e577fe0a 100644
--- a/android/app/build.gradle.kts
+++ b/android/app/build.gradle.kts
@@ -369,7 +369,6 @@ dependencies {
testImplementation(Dependencies.junitParams)
// UI test dependencies
- debugImplementation(Dependencies.AndroidX.fragmentTestning)
// Fixes: https://github.com/android/android-test/issues/1589
debugImplementation(Dependencies.AndroidX.testMonitor)
debugImplementation(Dependencies.Compose.testManifest)
diff --git a/android/buildSrc/src/main/kotlin/Dependencies.kt b/android/buildSrc/src/main/kotlin/Dependencies.kt
index b15b8ffbb0..367837caee 100644
--- a/android/buildSrc/src/main/kotlin/Dependencies.kt
+++ b/android/buildSrc/src/main/kotlin/Dependencies.kt
@@ -24,8 +24,6 @@ object Dependencies {
const val appcompat = "androidx.appcompat:appcompat:${Versions.AndroidX.appcompat}"
const val coreKtx = "androidx.core:core-ktx:${Versions.AndroidX.coreKtx}"
const val coreSplashscreen = "androidx.core:core-splashscreen:${Versions.AndroidX.coreSplashscreen}"
- const val fragmentTestning =
- "androidx.fragment:fragment-testing:${Versions.AndroidX.fragmentTesting}"
const val lifecycleRuntimeKtx =
"androidx.lifecycle:lifecycle-runtime-ktx:${Versions.AndroidX.lifecycle}"
const val lifecycleViewmodelKtx =
diff --git a/android/buildSrc/src/main/kotlin/Versions.kt b/android/buildSrc/src/main/kotlin/Versions.kt
index 7c3892ecbb..78d0891894 100644
--- a/android/buildSrc/src/main/kotlin/Versions.kt
+++ b/android/buildSrc/src/main/kotlin/Versions.kt
@@ -28,7 +28,6 @@ object Versions {
const val coreSplashscreen = "1.1.0-rc01"
const val espresso = "3.5.1"
const val lifecycle = "2.8.3"
- const val fragmentTesting = "1.6.2"
const val test = "1.5.0"
const val testMonitor = "1.6.1"
const val testOrchestrator = "1.4.2"