What is the current best practice for Kotlin 2.2 a...
# kotlin-native
t
What is the current best practice for Kotlin 2.2 and iOS GC. I have these in my gradle.properties. Do we think any or all of these are still needed, or would actually makes things worse?
Copy code
kotlin.native.binary.objcDisposeOnMain = false
kotlin.native.binary.mimallocUseCompaction = true
kotlin.native.toolchain.enabled = false
kotlin.incremental.native = true
👀 1