Out of curiosity: Why would you like to do it? I'm wondering if maybe there's something else that imposes a problem for you. I build dev tooling for iOS applications in the CI pipeline. The apps we test do not always have symbol information available, so we build the tools to symbolicate the crash reports. To test our tooling we need to be able to generate crash reports without symbols. The process we use: Create a crash report without symbol information First, make sure to build the binary without symbol information by setting DEPLOYMENT_POSTPROCESSING=Yes in the Xcode build settings. Apple developer tooling is very eager to help you symbolicate crash reports. So helpful that it can be unclear how to create crash reports without symbol information. There are several options: Build without generating a dSYM file. Note that this only works when you did't build the same app (with the same binary uuid's) on that machine before. Build on another machine, download the .app but not the .dSYM Note
Topic:
Developer Tools & Services
SubTopic:
Instruments
Tags: