https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
b

Before Old

03/24/2021, 4:26 AM
Hi there, my team is new to kmm, have a question about publishing a kmm framework from ios side. if we want to track the uncaught exception trace of kotlin, do we have to publish a debug framework instead of a release one? (we have read issues and docuement about this, not so sure) https://github.com/JetBrains/kotlin-native/issues/2600 https://kotlinlang.org/docs/native-ios-symbolication.html
a

Artyom Degtyarev [JB]

03/24/2021, 9:55 AM
No, as the document states, you can use the release version. When you build it, the
.dSYM
should also be produced. For some cases, you’ll need to produce the static framework. It is also described in the doc.
👍 1
2 Views