From 80585aa905be068435a18cb019d0e6cff94435dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Alc=C3=A9rreca?= Date: Tue, 10 Dec 2024 15:33:09 +0000 Subject: [PATCH] Sdk 35 and Compiler plugin --- app/build.gradle.kts | 8 +++----- build.gradle.kts | 1 + 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index ae2a243..40fe725 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -17,16 +17,17 @@ plugins { id("com.android.application") id("org.jetbrains.kotlin.android") + id("org.jetbrains.kotlin.plugin.compose") } android { namespace = "com.example.sports" - compileSdk = 34 + compileSdk = 35 defaultConfig { applicationId = "com.example.sports" minSdk = 24 - targetSdk = 34 + targetSdk = 35 versionCode = 1 versionName = "1.0" @@ -55,9 +56,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 05a4ae2..83ea416 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -24,4 +24,5 @@ plugins { id("com.android.application") version "8.7.3" apply false id("com.android.library") version "8.7.3" 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 }