Compiler plugin

This commit is contained in:
Jose Alcérreca
2025-11-12 00:00:00 +07:00
parent f500e4dc44
commit e97ff687f1
2 changed files with 2 additions and 3 deletions

View File

@@ -16,6 +16,7 @@
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
id("org.jetbrains.kotlin.plugin.compose")
}
android {
@@ -54,9 +55,6 @@ android {
buildFeatures {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.15"
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"

View File

@@ -19,4 +19,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
}