1
Fork 0
mirror of https://github.com/Steffo99/twom.git synced 2024-11-21 15:44:26 +00:00

Build with Java 11 to make toModel work properly

This commit is contained in:
Steffo 2024-02-05 01:25:00 +01:00
parent 1592ab26e1
commit 04e8aa3743
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -31,11 +31,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "11"
}
buildFeatures {
viewBinding = true