commit 98d36756c05af50b93f397ed47560046dd9748ae parent 4d23c920fdc1a3eb0869f32a2faff4debbc653a4 Author: Torsten Grote <t@grobox.de> Date: Tue, 2 Jan 2024 15:10:15 -0300 Upgrade Kotlin and Kotlin serialization Diffstat:
| M | build.gradle | | | 2 | +- |
| M | taler-kotlin-android/build.gradle | | | 2 | +- |
| M | wallet/build.gradle | | | 2 | +- |
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/build.gradle b/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - kotlin_version = '1.9.20' // observe compatibility with compose compiler + kotlin_version = '1.9.21' // observe compatibility with compose compiler ktor_version = '2.3.5' nav_version = '2.7.5' material_version = '1.10.0' diff --git a/taler-kotlin-android/build.gradle b/taler-kotlin-android/build.gradle @@ -74,7 +74,7 @@ dependencies { implementation 'com.google.zxing:core:3.5.0' // needs minSdkVersion 24+ or desugar // JSON parsing and serialization - api 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1' + api 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2' testImplementation "junit:junit:$junit_version" testImplementation 'org.json:json:20220320' } diff --git a/wallet/build.gradle b/wallet/build.gradle @@ -85,7 +85,7 @@ android { } composeOptions { - kotlinCompilerExtensionVersion "1.5.4" + kotlinCompilerExtensionVersion "1.5.7" } buildFeatures {