diff --git a/example/AndroidOnlyExample/app/build.gradle.kts b/example/AndroidOnlyExample/app/build.gradle.kts index 191c611dc..f78064da7 100644 --- a/example/AndroidOnlyExample/app/build.gradle.kts +++ b/example/AndroidOnlyExample/app/build.gradle.kts @@ -2,7 +2,7 @@ plugins { id("com.android.application") id("org.jetbrains.kotlin.android") id("com.google.devtools.ksp") version "1.9.20-1.0.14" - id("org.jetbrains.kotlin.plugin.serialization") version "1.9.10" + id("org.jetbrains.kotlin.plugin.serialization") version "1.9.21" id("de.jensklingenberg.ktorfit") version "1.10.2" } diff --git a/example/AndroidOnlyExample/build.gradle b/example/AndroidOnlyExample/build.gradle index 7c8e737b5..3adc86f16 100644 --- a/example/AndroidOnlyExample/build.gradle +++ b/example/AndroidOnlyExample/build.gradle @@ -2,5 +2,5 @@ plugins { id 'com.android.application' version '8.0.2' apply false id 'com.android.library' version '8.0.2' apply false - id 'org.jetbrains.kotlin.android' version '1.9.10' apply false + id 'org.jetbrains.kotlin.android' version '1.9.21' apply false } \ No newline at end of file diff --git a/example/MultiplatformExample/build.gradle.kts b/example/MultiplatformExample/build.gradle.kts index 64aa22726..d615d42a6 100644 --- a/example/MultiplatformExample/build.gradle.kts +++ b/example/MultiplatformExample/build.gradle.kts @@ -9,9 +9,9 @@ buildscript { } } dependencies { - classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.20") + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21") classpath("com.android.tools.build:gradle:7.3.1") - classpath("org.jetbrains.kotlin:kotlin-serialization:1.9.20") + classpath("org.jetbrains.kotlin:kotlin-serialization:1.9.21") } } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index bd2274d61..a724cce68 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -6,7 +6,7 @@ coroutines = "1.7.3" detekt = "1.23.1" junit = "4.13.2" kctfork = "0.3.2" -kotlin = "1.9.20" +kotlin = "1.9.21" kotlinPoet = "1.15.1" kspVersion = "1.9.20-1.0.14" ktorfit = "1.10.2"