withCrashReporting method

Builder withCrashReporting([
  1. bool crashReporting = true
])

Enable automatics collection of crash reports.

Catches uncaught exceptions and reports them to Flurry if crashReporting enabled. Default value is set to true.

Implementation

Builder withCrashReporting([bool crashReporting = true]) {
  builderAgent?.withCrashReporting(crashReporting);
  return this;
}