Add CI/CD
Some checks failed
Build / build (push) Failing after 28s

This commit is contained in:
2025-10-08 16:11:22 +07:00
parent e7b7751fbb
commit 6a9b6bc3a8
6 changed files with 33 additions and 17 deletions

View File

@@ -11,7 +11,7 @@ android {
compileSdk = 36
defaultConfig {
applicationId = "com.example.firefly_go_android"
applicationId = "com.kain344.firefly_go_android"
minSdk = 24
//noinspection OldTargetApi
targetSdk = 35
@@ -32,16 +32,17 @@ android {
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "11"
jvmTarget = "17"
}
buildFeatures {
compose = true
viewBinding = true
}
composeOptions {
@@ -49,6 +50,10 @@ android {
}
buildToolsVersion = "36.0.0"
ndkVersion = "27.2.12479018"
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
}
dependencies {