Bump java versions to 17

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2023-05-08 18:37:38 +02:00
parent 9d632a5abf
commit 98c0a778a4
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B
2 changed files with 4 additions and 4 deletions

View file

@ -212,7 +212,7 @@ android {
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
}
lint {

View file

@ -25,11 +25,11 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '17'
}
}