From becf6779f7ae2a55daca26863b94a824ba79842c Mon Sep 17 00:00:00 2001 From: AzenKain Date: Wed, 8 Oct 2025 21:51:08 +0700 Subject: [PATCH] Add CI/CD --- .idea/compiler.xml | 2 +- .idea/misc.xml | 2 +- app/build.gradle.kts | 14 ++++---------- 3 files changed, 6 insertions(+), 12 deletions(-) diff --git a/.idea/compiler.xml b/.idea/compiler.xml index b589d56..b86273d 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index 3b0be22..74dd639 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,7 +1,7 @@ - + diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 89eb7a0..d67b81b 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -1,7 +1,6 @@ @file:Suppress("UnstableApiUsage") import com.android.build.api.dsl.Packaging -import org.jetbrains.kotlin.gradle.dsl.JvmTarget plugins { @@ -10,15 +9,6 @@ plugins { alias(libs.plugins.kotlin.compose) } -kotlin { - jvmToolchain(17) -} - -tasks.withType().configureEach { - compilerOptions { - jvmTarget.set(JvmTarget.JVM_17) - } -} android { namespace = "com.example.firefly_go_android" compileSdk = 36 @@ -54,6 +44,10 @@ android { targetCompatibility = JavaVersion.VERSION_17 } + kotlinOptions { + jvmTarget = "17" + } + buildFeatures { compose = true viewBinding = true