Skip to content

Commit

Permalink
try with java 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
shachem committed May 10, 2021
1 parent 117e0be commit c5d1ea4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,16 +84,16 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildFeatures {
compose = true
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
kotlinOptions { jvmTarget = "11" }
kotlinOptions { jvmTarget = "1.8" }
packagingOptions {
exclude("META-INF/AL2.0")
exclude("META-INF/LGPL2.1")
Expand Down

0 comments on commit c5d1ea4

Please sign in to comment.