Extended Bug Report
This section documents the APIs you can use to collect specific details in your bug reports from your QA team, internal testers, or beta testers.
What is an Extended Bug Report?
Free-form comments from reporters can be time-consuming to read through when triaging bugs. The Extended Bug Report standardizes all of your bug reports with additional fields that are commonly used by QA and technical beta testers: steps to reproduce the bug, actual results, and expected results.
If enabled, the Extended Bug Report adds a second step to the bug reporting flow that your testers experience in your app.
Enabling the Extended Bug Report
By default, the Extended Bug Report mode is disabled. When enabling the Extended Bug Report, you can set whether the additional fields are required or optional.
BugReporting.setExtendedBugReportState(ExtendedBugReport.State.ENABLED_WITH_REQUIRED_FIELDS);
BugReporting.setExtendedBugReportState(ExtendedBugReport.State.ENABLED_WITH_REQUIRED_FIELDS)
Here are the possible modes you can set for Extended Bug Reports.
//Disable extended bug report mode
ExtendedBugReport.State.DISABLED
//Enable extended bug report mode and make all additional fields required
ExtendedBugReport.State.ENABLED_WITH_REQUIRED_FIELDS
//Enable extended bug report mode and make all additional fields optional
ExtendedBugReport.State.ENABLED_WITH_OPTIONAL_FIELDS
Updated over 4 years ago
Learn how to on-board your beta testers so they can give you the best feedback possible.