Add CI/CD
All checks were successful
Build / build (push) Successful in 8m55s

This commit is contained in:
2025-10-08 21:51:08 +07:00
parent d61b2aa907
commit becf6779f7
3 changed files with 6 additions and 12 deletions

View File

@@ -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<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().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