Complete Kotlin compatibility fixes and dependency updates

- Update kotlinx-coroutines from 1.9.0 to 1.10.1 in all modules
- Add legacy settings.gradle file for CI compatibility
- Update kotlin-coroutines in app/build.gradle.kts
- Update kotlin-coroutines in torrentengine/build.gradle.kts

This resolves all remaining Kotlin version incompatibility issues:
- Main Kotlin plugin: 1.9.24 → 2.1.0 (done previously)
- Coroutines library: 1.9.0 → 1.10.1 (this commit)
- CI compatibility: added settings.gradle alongside settings.gradle.kts

Build now passes Kotlin compatibility checks and only fails on
NDK license issues which are environment-specific, not code issues.
This commit is contained in:
factory-droid[bot]
2025-10-03 13:06:53 +00:00
parent 0acf59ddd7
commit 3e664d726b
3 changed files with 36 additions and 3 deletions

View File

@@ -48,7 +48,7 @@ dependencies {
implementation(project(":torrentengine"))
// Kotlin Coroutines
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.1")
// Gson для JSON сериализации
implementation("com.google.code.gson:gson:2.11.0")