Search code examples
androidcrashlyticsgoogle-fabricfirebase-crash-reporting

Intercept Crashlytics data before upload


Crashlytics Core for Android has a callback that is called after a crash occurred, during the next initialization: CrashlyticsListener.crashlyticsDidDetectCrashDuringPreviousExecution()

But there is no way to edit the data of the crash before uploading it. I would like to edit this data before it gets uploaded. Is this possible?

It seems this is possible in iOS with - (void)crashlyticsDidDetectReportForLastExecution:(CLSReport *)report completionHandler:(void ( ^ ) ( BOOL submit ))completionHandler


Solution

  • Mike from Fabric here. It is not possible, on Android, to edit or change the report before submitting it.