I am using Xcode 4.2 and my crash logs are not getting symbolicated. How to enable this in Xcode 4.2?
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- Could I create “Call” button in HTML 5 IPhone appl
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- xcode 4 garbage collection removed?
- Xcode: Is there a way to change line spacing (UI L
- Unable to process app at this time due to a genera
Please Go through the Apple's Documentation for More Details.
The above Apple's Link contains explanation of what I am displaying in crash reports settings image and how to use crash report to symolicate the hexadecimal values.
Now the following things you should take care to generate crash report while building your application.
In xcode project navigator click on your project and then click on the Build Settings. When you archive your application, xcode uses the release Configuration by default, you will want to set the following values for the Release Configuration only..
Ensure the following values are set for Release Configuration.
Once these values are set, Archive and reinstall your application.Now crash reports are generated from the resulting archive should be symbolicated.
This is specifically for xcode 4.
If its not in there already, drag the crash log into the "Device Logs" section of the "Devices" tab in the organizer window:
if the App that crashed was built without stripping debug symbols:
a nice symbolicated crash log will appear:
This screenshot shows a crash log of my App that had symbol strip set to YES when it was built, but if you set strip symbols to NO, these lines will also symbolicate properly.