Hello,
At run time, one of my apps is crashing every time with
dyld[1406]: missing symbol called
dyld config: DYLD_LIBRARY_PATH=/usr/lib/system/introspection DYLD_INSERT_LIBRARIES=/usr/lib/libBacktraceRecording.dylib:/Developer/Library/PrivateFrameworks/DTDDISupport.framework/libViewDebuggerSupport.dylib
I'm on an M1 Mac using Xcode 14 and targeting iOS 16. I tried this with Xcode 13.4.1 on this same laptop and had the same issue.
It does not give me any further information and it's always crashing on the same line: let xml = XML.parse(data)
. However, if I place a breakpoint on that line and po
the result of the XML call it prints correctly in the debugger, so not sure what symbol is missing....