Hello! how do you add the `.dSYM` for desymbolicat...
# multiplatform
d
Hello! how do you add the
.dSYM
for desymbolication in iOS? So far I saw an article suggesting to use
Copy code
targets.withType<KotlinNativeTarget> {
    binaries.all {
        freeCompilerArgs += "-Xadd-light-debug=enable"
    }
}
but it doesn't seem to work