Guilherme Delgado
04/17/2024, 1:58 PMKotlin 1.9.23
to 2.0.0-RC1
and also updated:
targets.withType<KotlinNativeTarget> {
compilations["main"].kotlinOptions.freeCompilerArgs += "-Xexport-kdoc"
}
to
iosMain {
compilerOptions {
freeCompilerArgs.add("-Xexport-kdoc")
}
}
But now when running the project I get this warning only for `sharedcompileKotlinWasmJs`:
Flag is not supported by this version of the compiler: -Xexport-kdoc. (same for -Xbinary=bundleId)Any reason?