Matej Drobnič
07/07/2019, 7:24 PMUseExperimental
annotation in multiplatform project? I tried
kotlin {
targets.all {
compilations.all {
kotlinOptions {
freeCompilerArgs += "-Xuse-experimental=kotlin.Experimental"
}
}
}
}
and IntelliJ still warns about missing compiler argumentrusshwolf
07/07/2019, 7:28 PMsourceSets {
all {
languageSettings {
useExperimentalAnnotation('kotlin.Experimental')
}
}
}
Matej Drobnič
07/07/2019, 7:42 PMlouiscad
07/07/2019, 7:45 PMMatej Drobnič
07/07/2019, 7:49 PMlouiscad
07/07/2019, 7:51 PMMatej Drobnič
07/07/2019, 7:51 PMrusshwolf
07/07/2019, 9:14 PM