John O'Reilly
02/12/2024, 5:51 PMsourceSets {
all {
languageSettings.optIn("kotlinx.cinterop.ExperimentalForeignApi")
}
Joffrey
02/12/2024, 6:02 PMmodule.yml
settings (no need for Gradle interop):
settings:
kotlin:
optIns: [ "kotlinx.cinterop.ExperimentalForeignApi" ]
See: https://github.com/JetBrains/amper/blob/0.2/docs/DSLReference.md#kotlinJohn O'Reilly
02/12/2024, 6:11 PM