From 10f2dc6db7f38a81e166802bd2459c6ed1494bb5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 10:15:24 +0000 Subject: [PATCH 1/2] Update kotlin --- app/build.gradle.kts | 2 +- build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index e153f94..e697c59 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -57,7 +57,7 @@ android { compose = true } composeOptions { - kotlinCompilerExtensionVersion = "1.4.7" + kotlinCompilerExtensionVersion = "1.5.15" } packaging { resources { diff --git a/build.gradle.kts b/build.gradle.kts index 0e62ef0..6a9e1e0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -19,5 +19,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.8.21" apply false + id("org.jetbrains.kotlin.android") version "2.1.0" apply false } From 9b40736cc267a0dd8f251daa86a92c65fc4e069e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Alc=C3=A9rreca?= Date: Mon, 9 Dec 2024 13:29:35 +0000 Subject: [PATCH 2/2] Compose compiler plugin --- app/build.gradle.kts | 4 +--- build.gradle.kts | 1 + 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index e697c59..7b673ba 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -17,6 +17,7 @@ plugins { id("com.android.application") id("org.jetbrains.kotlin.android") + id("org.jetbrains.kotlin.plugin.compose") } android { @@ -56,9 +57,6 @@ android { buildFeatures { compose = true } - composeOptions { - kotlinCompilerExtensionVersion = "1.5.15" - } packaging { resources { excludes += "/META-INF/{AL2.0,LGPL2.1}" diff --git a/build.gradle.kts b/build.gradle.kts index 6a9e1e0..7068404 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -20,4 +20,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 "2.1.0" apply false + id("org.jetbrains.kotlin.plugin.compose") version "2.1.0" apply false }