Link to download symbolicatecrash file https://github.com/chrispix/ symbolicatecrash-fix 1. Using XCode: This is probably the easiest way to symbolicate the crash reports, but not always effective. To symbolicate using XCode you need three files: a. Crash report (.crash file). b. Symbol file (.dSYMB file). c. Application bundle (.app file). In most of the cases you will have “yourapp.ipa” file, to extract “yourapp.app“ from “yourapp.ipa” just change the extension of “yourapp.ipa” to “yourapp.zip” and extract the zip file, you will get a folder named “Payload”, in this folder you will have “yourapp.app” package. 2. Using symbolicatecrash command: Some times XCode do not symbolicate the crash log properly, In this situation we can use symbolicatecrash script manually. Before proceeding keep you “.app”, ”.dSYM” and “.crash” files in one folder. Now open ...