From 0bc50f96d491effa1e7aa0b0a8f527c796e40475 Mon Sep 17 00:00:00 2001 From: Tom Levy Date: Tue, 26 Mar 2024 11:04:23 +0000 Subject: [PATCH] Update Kotlin to 1.9.23 This fixes the build after the recent update of the Composer Compiler: e: This version (1.5.11) of the Compose Compiler requires Kotlin version 1.9.23 but you appear to be using Kotlin version 1.9.22 which is not known to be compatible. Please consult the Compose-Kotlin compatibility map located at https://developer.android.com/jetpack/androidx/releases/compose-kotlin to choose a compatible version pair (or `suppressKotlinVersionCompatibilityCheck` but don't say I didn't warn you!). --- gradle/libs.versions.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 963a25bcf..a7b4c7d5e 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,10 +1,10 @@ [versions] #jetbrains -kotlin = "1.9.22" +kotlin = "1.9.23" kotlin-immutable-collections = "0.3.6" #KSP kotlinxSerializationJson = "1.5.1" -ksp = "1.9.22-1.0.17" +ksp = "1.9.23-1.0.19" #Androidx androidx-customView = "1.2.0-alpha02" androidx-customViewPooling = "1.0.0"