Fix building on modern Java

This commit is contained in:
2025-09-30 15:13:35 +02:00
parent b0f0417d43
commit e9af366986

View File

@@ -111,6 +111,12 @@ android {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
kotlin {
jvmToolchain(17)
}
testOptions.unitTests.all {
// log results of tests to console, useful for travis