Jonathan Morabito
04/23/2024, 6:30 PMJonathan Morabito
04/23/2024, 6:30 PMJonathan Morabito
04/23/2024, 6:32 PMkotlin {
androidTarget {
compilations.all {
kotlinOptions {
jvmTarget = "11"
}
}
}
}
and
android {
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
}
Jonathan Morabito
04/23/2024, 6:33 PMJonathan Morabito
04/23/2024, 6:36 PMJonathan Morabito
04/23/2024, 6:40 PMkotlin {
jvmToolchain(11)
}