interface CrashReporterService
(source)
Interface to be implemented by external services that accept crash reports.
abstract fun report(crash: UncaughtExceptionCrash): Unit
Submits a crash report for this Crash.UncaughtExceptionCrash. abstract fun report(crash: NativeCodeCrash): Unit
Submits a crash report for this Crash.NativeCodeCrash. |
class MozillaSocorroService : CrashReporterService
A CrashReporterService implementation uploading crash reports to crash-stats.mozilla.com. |
|
class SentryService : CrashReporterService
A CrashReporterService implementation that uploads crash reports to a Sentry server. |