fix: make Android prototype buildable

This commit is contained in:
Mimikko-zeus
2026-06-23 11:42:35 +08:00
parent 961554712b
commit 4f1fb80851
4 changed files with 30 additions and 21 deletions

View File

@@ -22,6 +22,15 @@ android {
buildFeatures {
compose = true
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
}
dependencies {