According to this page here if you have proper application binary and .dSYM file then it is easy to symbolic them. But where are .dSYM and application binary files located?<
In Xcode 5.1.1 you will find it under Xcode -> Preferences -> Locations -> DerivedData. Under DerivedData you will see a bunch of random directory names. Find the ones that starts with your project name. Then get the latest directory that was created for your project. Then under that directory go to Build/Products/<Your specific release>/*.app.dSYM
.
You can even click on your end product under "Products" in project explorer and do a "Show in finder" to get there directly.
If you haven't generated an archive and are trying to debug it on the device, dsym can be found at
/Library/Developer/Xcode/DerivedData/YOUR_APP/Build/Products/Debug-iphoneos
[dSYM]
.dSYM
is generated near .app
..dSYM
is defined by Build location
[About]. Usually it is a Derived Data
folder.
For example F49088168M.app.dSYM
is located
/Users/alex/Library/Developer/Xcode/DerivedData/F49088168M-gltfsnpvscodolcmxrvkbaebeppp/Build/Products/Debug-iphonesimulator/F49088168M.app.dSYM
You can locate .dSYM and application binary file in archive.
dSYMs folder contains dSYM file of your project.
Application folder in Project contains application binary of your project.
I found build configuration
should be Release
to generate .dSYM
file.
If you have archived your project, you can find the dSYM file as above.
If you have build you project for a real device, you can also find the dSYM file by the following way:
Make sure that the app is in black color, not red. Because red color means that you have not build the target for a real device.
Before all of these actions, make sure you have configured the xcode build settings right, as follows:
Generate Debug Symbols
setting is enabled.Debug Infomation Format
are set to DWARF with dSYM File
.Hope this will help.