From e9a5c0e8a1f46b0b945dd67e97085a9ef37f1ad3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Rebelo?= Date: Thu, 11 Jul 2024 18:10:13 +0100 Subject: [PATCH] Remove kotlin-bom platform dependency override After all the remaining dependencies were upgraded, this does not seem to be needed anymore. According to `./gradlew app:dependencies`, it is using 1.8.22, which seems to be the latest across all transitive dependencies. --- app/build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 09a8f7cef..8f500ae1a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -255,8 +255,9 @@ dependencies { // Android SDK bundles org.json, but we need an actual implementation to replace the stubs in tests testImplementation 'org.json:json:20240303' - // Fix Duplicate class build error - implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0")) + // Fix Duplicate class build error for conflicting kotlin-stdlib versions + // does not seem to be currently needed, as it uses the latest across all transitive + //implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0")) // Needed for Armenian transliteration implementation 'org.ahocorasick:ahocorasick:0.6.3'