Skip to content

Commit

Permalink
feat: use java 11 (#87)
Browse files Browse the repository at this point in the history
* feat: use java 11
  • Loading branch information
akexorcist authored Sep 8, 2024
1 parent 48c136e commit 13cd33d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ android {
val signingKeyFile: String? = System.getenv("SIGNING_KEY_STORE_PATH")
if (signingKeyFile != null) {
signingConfig = signingConfigs.create("release") {
storeFile = file("${signingKeyFile}")
storeFile = file("$signingKeyFile")
storePassword = System.getenv("SIGNING_STORE_PASSWORD")
keyAlias = System.getenv("SIGNING_KEY_ALIAS")
keyPassword = System.getenv("SIGNING_KEY_PASSWORD")
Expand All @@ -44,12 +44,12 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
isCoreLibraryDesugaringEnabled = true
}
kotlinOptions {
jvmTarget = "17"
jvmTarget = "11"
}
buildFeatures {
compose = true
Expand Down

0 comments on commit 13cd33d

Please sign in to comment.