Skip to content

Commit

Permalink
Set source/targetCompatibility & jvmTarget to Java 11 (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyrillosgait authored Oct 3, 2023
1 parent 50d0ad7 commit cdfc590
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ group = "com.github.vinted"
android {
compileSdk = Versions.COMPILE_SDK_VERSION

compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

kotlinOptions {
jvmTarget = "11"
}

defaultConfig {
minSdk = Versions.MIN_SDK_VERSION
}
Expand Down

0 comments on commit cdfc590

Please sign in to comment.