Is debugging of xcode frameworks now supported? I...
# kotlin-native
t
Is debugging of xcode frameworks now supported? I just updated to
0.6.1
and added
enableDebug true
to my framework closure and built the framework. But when I set a breakpoint in the xcode UI and try to step into the kotlin code, it steps over 🤔
s
You can set a breakpoint in your Kotlin framework in the xcode lldb console. That's all xcode will allow. The command is something like
bp set -f "KotlinFile.kt" L36
👍 3
t
Ah ok 👍