My app got rejected from Apple and I have got crash reports in .txt format instead of .crash format.
How can I symbolicate or read the crash report ?
By dragging the .crash file in organiser was not completely symbolicating my crash. So i tried another way of doing it.
If archived builds is already on your computer. Then you don't need to give .app and dsym file. Just run below commands in terminal.
export DEVELOPER_DIR="/Applications/Xcode.app/Contents/Developer"
Hit enter
/Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash /Your/Crash/File/Path/c.crash > /Your/Symbolicated/Crash/File/Path/c.crash
Hit enter and check the path you have given.