Crash Reporting Callbacks
Covered here is how to set up the callbacks that fire before every crash report is sent so that a specific block of code is executed in your Android app.
Before Sending a Report
Luciq.onReportSubmitHandler{report -> }Luciq.onReportSubmitHandler(new Report.OnReportCreatedListener() {
@Override
public void onReportCreated(Report report) {
}
};Exporting Crash Metadata
CrashReporting.setOnCrashSentCallbackCrashReporting.setOnCrashSentCallbackLast updated