Skip to content

Commit 7eed238

Browse files
author
breensmbaka
committed
Migrating to the K2 Compiler
1 parent a97ab9d commit 7eed238

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

BeeTablesCompose/build.gradle.kts

+1-7
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ plugins {
1717
id("com.android.library")
1818
id("org.jetbrains.kotlin.android")
1919
id("maven-publish")
20+
id("org.jetbrains.kotlin.plugin.compose")
2021
}
2122

2223
android {
@@ -46,13 +47,6 @@ android {
4647
kotlinOptions {
4748
jvmTarget = "1.8"
4849
}
49-
buildFeatures {
50-
compose = true
51-
}
52-
composeOptions {
53-
kotlinCompilerExtensionVersion = "1.5.14"
54-
}
55-
5650
packaging {
5751
resources {
5852
excludes += "/META-INF/{AL2.0,LGPL2.1}"

app/build.gradle.kts

+1-6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
plugins {
1717
id("com.android.application")
1818
id("org.jetbrains.kotlin.android")
19+
id("org.jetbrains.kotlin.plugin.compose")
1920
}
2021

2122
android {
@@ -51,12 +52,6 @@ android {
5152
kotlinOptions {
5253
jvmTarget = "1.8"
5354
}
54-
buildFeatures {
55-
compose = true
56-
}
57-
composeOptions {
58-
kotlinCompilerExtensionVersion = "1.5.14"
59-
}
6055
packaging {
6156
resources {
6257
excludes += "/META-INF/{AL2.0,LGPL2.1}"

build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ plugins {
44
id("org.jetbrains.kotlin.android") version "1.9.24" apply false
55
id("com.android.library") version "8.1.4" apply false
66
id("com.diffplug.spotless") version "6.19.0" apply false
7+
id("org.jetbrains.kotlin.plugin.compose") version "2.0.0" apply false
78
}
89

910
subprojects {

0 commit comments

Comments
 (0)