CrashReportKit Inspector is a macOS companion app for viewing and symbolically resolving crash reports generated by CrashReportKit.
Select a CrashReportKit JSON report and its matching dSYM bundle. The app matches binary UUIDs, resolves available stack-frame symbols, and opens an inspection window containing a readable crash summary and the resulting symbolicated JSON.
- Native file pickers for CrashReportKit JSON reports and dSYM bundles
- dSYM matching using binary UUIDs
- Offline symbolication using Apple's
atosanddwarfdumptools - Summary of the app, build, exception, device, operating system, and suspected faulting thread
- Important stack frames from the suspected crashing thread
- Pretty-printed raw JSON with offline symbols
- Clear warnings when a dSYM does not match or frames cannot be symbolicated
The source report is never modified. Symbolication results are added only to the in-memory JSON displayed by the Inspector.
- macOS 26 or later
- A JSON report generated by CrashReportKit
- A dSYM matching the crashed app build
- Open CrashReportKit Inspector.
- Choose a CrashReportKit
.jsonreport. - Choose the
.dSYMbundle produced for the corresponding app build. - Select Inspect.
- Use the Summary tab for the important crash details or Raw JSON for the complete symbolicated report.
The dSYM must come from the exact build that produced the crash. For archived applications, it is normally available in the archive's dSYMs directory:
MyApp.xcarchive/dSYMs/MyApp.app.dSYM
The Inspector compares the dSYM UUID with UUIDs recorded in the report. A dSYM from another build cannot correctly symbolicate its addresses.
When an address is resolved, the Inspector adds an offlineSymbol property to its frame. It also adds top-level symbolication metadata:
{
"offlineSymbolication": {
"dSYM": "MyApp.app.dSYM",
"matchedImages": 1,
"symbolicatedFrames": 8
}
}Existing report fields and on-device symbols remain intact.
- The report's faulting thread is inferred by CrashReportKit and may not always be conclusive.
- An app dSYM symbols only matching application binaries. It does not generally provide symbols for Apple system frameworks.
- Optimisation and inlining can affect the source locations and function names returned during symbolication.
- CrashReportKit JSON is a custom format and is not an Apple
.ipscrash report.
Inspection and symbolication happen locally on the Mac. CrashReportKit Inspector does not upload reports or dSYMs.
Available under the same MIT license as CrashReportKit.