Hi, we are currently checking what is the state of...
# multiplatform
m
Hi, we are currently checking what is the state of debugging kotlin from iOS side. We are including an xcframework (with dsym). We tried the two approaches below with the following issues: • run iOS app and set breakpoints from Android studio: watch expressions is not working, is not resolving the types and everything is an address (check screenshot attached). With lldb we are getting the error
error: <user expression 891>:1:6: member access into incomplete type 'ObjHeader'
• use https://github.com/touchlab/xcode-kotlin in XCode: we had to add the dsym to lldb after starting the app with
add-dsym
otherwise the breakpoint were not resolved. Anyway the symbols are not resolved and everything not primitive is a
ObjHeader *
. Are these issues expected or any link to follow regarding them? We are trying to figure out what we could expect to work and what are the known issues of both approaches. Thanks!
👀 2
x
Same question with me.
@Marco Righini Hi, any update solution for this?