9.1.0
This release essentially adds the ability to capture screenshots from modal dialogs.
The Maoni#start
method has been overloaded to accept a Dialog
instance. So you can now pass either an Activity
or a Dialog
to this method, e.g.:
//The optional file provider authority allows you to
//share the screenshot capture file to other apps (depending on your callback implementation)
new Maoni.Builder(<myContextObject>, MY_FILE_PROVIDER_AUTHORITY)
.withDefaultToEmailAddress("feedback@my.company.com")
.build()
.start(<myDialogInstance>);
Preview
Thanks @dennisdeng2002 for this contribution !