Jeff Lockhart
09/14/2023, 7:11 PM"kotlinx.cinterop.BetaInteropApi"
, while avoiding:
w: Opt-in requirement marker kotlinx.cinterop.BetaInteropApi is unresolved. Please make sure it's present in the module dependenciesfrom non-native source sets.
Jeff Lockhart
09/14/2023, 7:12 PMsourceSets.configureEach {
languageSettings {
if (!name.startsWith("common") &&
!name.startsWith("jvm") &&
!name.startsWith("android")
) {
optIn("kotlinx.cinterop.BetaInteropApi")
optIn("kotlinx.cinterop.ExperimentalForeignApi")
}
}
}
But I feel like there should be a proper typed-API for this.dmitriy.novozhilov
09/14/2023, 9:34 PM