I was my understanding that you're supposed to be able to open a .ips crash log in Xcode and see pretty much what you would see if the app had been running in the debugger when it crashed. But the addresses in my app don't get symbolicated. I opened the .ips in the same project and same version of Xcode that was used to create the app. The .dSym file is around, and I can use it to symbolicate using the atos
tool. What am I missing?
Thanks for sharing your issue. When debugging an app crash that occurs with symbols available, you can usually pinpoint the exact location of the problem by examining the crash stack frames. If the stack trace isn't showing the symbols, you might want to ensure that the 'Debug Symbols' setting is configured properly in your debug settings.
Could you please post the '.ips' file here? This file will help us identify which part of your app, or any involved frameworks/libraries, crashed. If you also have the accompanying '.ups' file, we can symbolize it to get even more detailed information.
Symbolize the Crash: Symbolizing the crash report will make it easier for us to understand the issue. Please follow the steps provided in the Apple Developer documentation: https://developer.apple.com/documentation/xcode/adding-identifiable-symbol-names-to-a-crash-report#Symbolicate-the-crash-report-in-Xcode
Looking forward to seeing the files and helping you resolve this issue!