mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 17:37:05 +05:30
database: add required flag for @OptIn
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
9478ba3c90
commit
cf48139405
1 changed files with 7 additions and 1 deletions
|
@ -6,7 +6,13 @@ plugins {
|
|||
|
||||
kotlin {
|
||||
android()
|
||||
jvm("desktop") { compilations.all { kotlinOptions.jvmTarget = "11" } }
|
||||
jvm("desktop") {
|
||||
compilations.all {
|
||||
kotlinOptions.jvmTarget = "11"
|
||||
kotlinOptions.freeCompilerArgs =
|
||||
kotlinOptions.freeCompilerArgs + listOf("-Xopt-in=kotlin.RequiresOptIn")
|
||||
}
|
||||
}
|
||||
sourceSets {
|
||||
// Workaround for:
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue