Disable Crash Reporting
Crash reporting is enabled by default, but you can manually disable crash reporting through the instrumentation configuration. If you are using other crash reporting tools, you might disable crash reporting to minimize conflicts and optimize the crash report results.
crashReportingEnabled property as shown in the following code example:
- Objective-C
-
CODE
ADEumAgentConfiguration *config = [[ADEumAgentConfiguration alloc] initWithAppKey:appKey]; config.crashReportingEnabled = No [ADEumInstrumentation initWithConfiguration:config];
- Swift
-
JAVASCRIPT
let config = ADEumAgentConfiguration(appKey: <#EUM_APP_KEY#>); config.crashReportingEnabled = false; ADEumInstrumentation.initWith(config);