Crash Re Symbolication is the process of finding the exact fault.
Just follow the steps to counter the failure problem. To get your symbolized logs from Crash logs, you need the following files:
- AppName.app - Application File (Executable file)
- File AppName-dsym.dSYM - dSYM generated by XCODE when executing the actual .app file
- AppName-Crash-log.crash

Carefully follow all the steps, and then check the crash logs, which you will find exactly where this will cause the application to crash.
Now follow these steps:
Move all the above files (AppName.app, AppName-dSYM.dSYM and AppName-Crash-log.crash) to a folder with a convenient name, where you can easily use the terminal. Just create the MyCrashReport folder on your desktop and add all three files to it.
Go to the following path that applies to your version of XCODE:
Xcode 6
/Applications/Xcode.app/Contents/SharedFrameworks/DTDeviceKitBase.framework/Versions/A/Resources/symbolicatecrash
Other then Xcode 6
Content / Developer / Platforms / iPhoneOS.platform / Developer / Library / PrivateFrameworks / DTDeviceKitBase.framework / Versions / A / Resources / symbolicatecrash
or
Content / Developer / Platforms / iPhoneOS.platform / Developer / Library / PrivateFrameworks / DTDeviceKit.framework / Versions / A / Resources / symbolicatecrash
Xcode 7.3
/Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash
- Copy the file with the crash symbol from this place and paste it with the three files into the MyCrashReport folder.

Open the terminal and the CD in the MyCrashReport folder.
cd Desktop / MyCrashReport - press Enter
export DEVELOPER_DIR = "/Applications/XCode.app/Content/Developer" - Press Enter
./symbolicatecrash -v AppName-Crash-log.crash AppName.dSYM - Press Enter
Done !!! Now symbolic logs are on your terminal and detect an error or failure in it.
See this link for a detailed description. https://medium.com/@Mrugraj/crash-re-symbolication-5c28d3a3a883#.4lvl4h625
source share