Implemented desugaring to be able to compile KorIM for Android

This commit is contained in:
dankito 2023-04-11 02:16:59 +02:00
parent 3041c5aec3
commit 44f0bf7d34
1 changed files with 8 additions and 0 deletions

View File

@ -34,6 +34,14 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
lintOptions {
isCheckReleaseBuilds = false
//If you want to continue even if errors found use following line