1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-27 20:36:51 +01:00

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.
This commit is contained in:
José Rebelo 2024-07-11 18:10:13 +01:00
parent 9f2d525c0d
commit e9a5c0e8a1

View File

@ -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'