Simplify DefaultBugReporter and ensure response is closed #2905

This commit is contained in:
Benoit Marty 2024-06-04 16:01:01 +02:00 committed by Benoit Marty
parent 11a8bbe7a9
commit ced4c38ec5
6 changed files with 191 additions and 226 deletions

View file

@ -25,7 +25,7 @@ interface BugReporter {
* @param withDevicesLogs true to include the device log
* @param withCrashLogs true to include the crash logs
* @param withScreenshot true to include the screenshot
* @param theBugDescription the bug description
* @param problemDescription the bug description
* @param canContact true if the user opt in to be contacted directly
* @param listener the listener
*/
@ -33,9 +33,9 @@ interface BugReporter {
withDevicesLogs: Boolean,
withCrashLogs: Boolean,
withScreenshot: Boolean,
theBugDescription: String,
problemDescription: String,
canContact: Boolean = false,
listener: BugReporterListener?
listener: BugReporterListener
)
/**