Bug Reporting Callbacks
Covered here are callbacks that you can use to have a block of code executed when a certain action is triggered for your Android apps.
Before Invoking Luciq
BugReporting.setOnInvokeCallback {
//do something
}BugReporting.setOnInvokeCallback(new OnInvokeCallback() {
@Override
public void onInvoke() {
//do something
}
});Before Sending a Report
Luciq.onReportSubmitHandler{report -> }Luciq.onReportSubmitHandler(new Report.OnReportCreatedListener() {
@Override
public void onReportCreated(Report report) {
}
});After Dismissing Luciq
BugReporting.setOnDismissCallback { issueState, reportType -> }BugReporting.setOnDismissCallback(new OnSdkDismissCallback() {
@Override
public void call(DismissType issueState, ReportType reportType) {
}
});DismissType
DismissTypeReportType
ReportTypeDisabling Callbacks
Last updated