Maoni


Source link: https://github.com/rm3l/maoni

Maoni is a lightweight open-source library for integrating a way to collect user feedbacks from within Android applications.

Built from the ground up with the Material Design principles in mind, it allows to capture a screenshot of the activity the user is currently viewing and attach it to the feedback.

Just provide callbacks implementations and you're good to go. Maoni will take care of collecting your users' feedbacks and call those implementations.

Below is a quick overview of the features included:

  • Contextual information. Device and application information, if available.
    • Device screen resolution, mobile data and GPS states, ...
  • Screenshot and logs capture.
    • Because receiving a feedback with contextual information is much much better for analysis, Maoni allows to take a screen capture of the calling activity, along with the application logs. Note that the inclusion of such screenshot and logs in the feedback object is opt-out, at the user's discretion.
    • Touch to preview screenshot
    • Ability for users of your app to highlight or blackout items in the screen capture. They may choose to highlight relevant items or blackout any sensitive information.
  • Customization.
    • Besides the default form fields, you are free to include an extra layout with additional views. And you always have access to the underlying view elements.
    • Theme elements and styles can be adjusted.
  • Callbacks.
    • Form validation. You can provide your own if needed for example for your extra fields.
    • Listeners. Upon validation, Maoni calls the callbacks implementations you provided earlier. So you just have limitless possibilities for an integration with any remote feedback services. For reference, the following implementations are provided as external dependencies:
      • maoni-email, so your users can send their feedback via email
      • maoni-slack, so your users can send their feedback to Slack
      • maoni-jira, to send your users' feedbacks as JIRA issues (to the JIRA host of your choice)
      • maoni-github, to send your users' feedbacks as Github issues (to the Github repository of your choice)
      • maoni-doorbell, to send your users' feedbacks to Doorbell.io

Take a look at the sample application for a quick overview.

Motivations

While working on a new version of DD-WRT Companion, one of my Android apps, I needed a simple yet pleasant way to collect users' feedbacks, along with some contextual information. I experimented with a simple dialog, then tried a bunch of other libraries, but could not find one with screenshot capturing capabilities, not vendor lock-in, and which is almost a no-brainer as to integrating with any remote services. I was also looking for screen capture highlight / blackout capabilities, as in use for issue reporting in several apps from Google.

So as a way to give back to the Open Source community, I decided to create Maoni as a separate library project.

By the way, as a side note, Maoni is a Swahili word for comments or opinions.

Sample App

Screenshots

Getting started

Grab via Gradle, by adding this to your build.gradle:

  dependencies {

  // ...
  compile ('org.rm3l:maoni:4.0.1@aar') {

transitive = true
  
}

}

Putting it together

Integrating with Maoni is intended to be seamless and straightforward for most existing Android applications.

Just leverage the fluent Maoni Builder to construct and start an Maoni instance at the right place within your application workflow (for example a button click listener, or a touch of a menu item).

For example, to start with just the defaults:

 //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("[email protected]")

.build()

.start(MaoniSampleMainActivity.this);
 //The screenshot captured is relative to this calling activity 

To customize every aspect of your Maoni activity, call the fluent methods of Maoni.Builder, e.g.:

 // MyHandlerForMaoni is a custom implementation of Maoni.Handler, 
  // which is a shortcut interface for defining both a validator and listeners for Maoni
  final MyHandlerForMaoni myHandlerForMaoni = new MyHandlerForMaoni(MaoniSampleMainActivity.this);

 //The optional file provider authority allows you to 
  //share the screenshot capture file to other apps (depending on your callback implementation)
  new Maoni.Builder(MY_FILE_PROVIDER_AUTHORITY)

.withWindowTitle("Send Feedback") //Set to an empty string to clear it

.withMessage("Hey! Love or hate this app? We would love to hear from you.")

.withExtraLayout(R.layout.my_feedback_activity_extra_content)

.withHandler(myHandlerForMaoni) //Custom Callback for Maoni

.withFeedbackContentHint("[Custom hint] Write your feedback here")

.withIncludeScreenshotText("[Custom text] Include screenshot")

.withTouchToPreviewScreenshotText("Touch To Preview and Edit")

.withContentErrorMessage("Custom error message")

.withScreenshotHint("Custom test: Lorem Ipsum Dolor Sit Amet...")

//... there are other aspects you can customize

.build()

.start(MaoniSampleMainActivity.this);
 //The screenshot captured is relative to this calling activity 

You're good to go! Maoni will take care of validating / collecting your users' feedbacks and call your callbacks implementations.

Available callbacks

Some common callbacks for Maoni are available as external dependencies to include in your application.

maoni-email

This callback opens up an Intent for sending an email with the feedback collected. This is the default fallback listener used in case no other listener has been set explicitly.

Add this additional line to your build.gradle:

  dependencies {

  // ...
  compile 'org.rm3l:maoni-email:<appropriateVersion>'

}

And set it as the listener for your Maoni instance:

 final org.rm3l.maoni.email.MaoniEmailListener emailListenerForMaoni =

  new org.rm3l.maoni.email.MaoniEmailListener(...);

 new Maoni.Builder(MY_FILE_PROVIDER_AUTHORITY)

.withListener(emailListenerForMaoni) //Callback from maoni-email

//...

.build()

.start(MaoniSampleMainActivity.this);
 //The screenshot captured is relative to this calling activity 

Visit the dedicated repository for further details.

maoni-slack

This callback sends feedback collected to Slack via an an incoming WebHook integration.

To use it, you must first set up an incoming WebHook integration, and grab the Webhook URL.

Add this additional line to your build.gradle:

  dependencies {

  // ...
  compile 'org.rm3l:maoni-slack:<appropriateVersion>'

}

And set it as the listener for your Maoni instance

 final org.rm3l.maoni.slack.MaoniSlackListener slackListenerForMaoni =

  new org.rm3l.maoni.slack.MaoniSlackListener(...);
 //Pass the Slack WebHook URL, channel, ...

 new Maoni.Builder(MY_FILE_PROVIDER_AUTHORITY)

.withListener(slackListenerForMaoni) //Callback from maoni-slack

//...

.build()

.start(MaoniSampleMainActivity.this);
 //The screenshot captured is relative to this calling activity 

Visit the dedicated repository for further details.

maoni-github

This callback sends feedback collected as a Github issue to a specified Github repository.

To use it, you will need to have an account there, and grab your Personal Access Token. You may want to create a dedicated reporter user for that purpose.

Add this additional line to your build.gradle:

  dependencies {

  // ...
  //As this will be plugged as a callback for Maoni, it requires Maoni dependency as well.
  //See http://maoni.rm3l.org for more details.
  //compile ('org.rm3l:maoni:<appropriate_version>@aar') {

  //
transitive = true;
  //
}

  compile 'org.rm3l:maoni-github:<appropriateVersion>'

}

And set it as the listener for your Maoni instance:

 //Customize the maoni-github listener, with things like your user personal Access Token on Github
  final org.rm3l.maoni.github.MaoniGithubListener listenerForMaoni =

  new org.rm3l.maoni.github.MaoniGithubListener(...);

 new Maoni.Builder(MY_FILE_PROVIDER_AUTHORITY)

.withListener(listenerForMaoni) //Callback from maoni-github

//...

.build()

.start(MaoniSampleMainActivity.this);
 //The screenshot captured is relative to this calling context 

Visit the dedicated repository for further details.

maoni-jira

This callback sends feedback collected as a JIRA issue to a specified JIRA project.

You may want to create a dedicated reporter user on your JIRA Host for that purpose.

Add this additional line to your build.gradle:

  dependencies {

  // ...
  //As this will be plugged as a callback for Maoni, it requires Maoni dependency as well.
  //See http://maoni.rm3l.org for more details.
  //compile ('org.rm3l:maoni:<appropriate_version>@aar') {

  //
transitive = true;
  //
}

  compile 'org.rm3l:maoni-jira:<appropriateVersion>'

}

And set it as the listener for your Maoni instance:

 //Customize the maoni-jira listener, with things like your REST URL, username, password
  final org.rm3l.maoni.jira.MaoniJiraListener listenerForMaoni =

  new org.rm3l.maoni.jira.MaoniJiraListener(...);

 new Maoni.Builder(MY_FILE_PROVIDER_AUTHORITY)

.withListener(listenerForMaoni) //Callback from maoni-jira

//...

.build()

.start(MaoniSampleMainActivity.this);
 //The screenshot captured is relative to this calling context 

Visit the dedicated repository for further details.

maoni-doorbell

This callback sends feedback collected to Doorbell.

To use it, you will need to have an account there, and grab your application ID and secret key.

Add this additional line to your build.gradle:

  dependencies {

  // ...
  compile 'org.rm3l:maoni-doorbell:<appropriateVersion>'

}

And set it as the listener for your Maoni instance:

 final org.rm3l.maoni.doorbell.MaoniDoorbellListener doorbellListenerForMaoni =

  new org.rm3l.maoni.doorbell.MaoniDoorbellListener(...);

 new Maoni.Builder(MY_FILE_PROVIDER_AUTHORITY)

.withListener(doorbellListenerForMaoni) //Callback from maoni-doorbell

//...

.build()

.start(MaoniSampleMainActivity.this);
 //The screenshot captured is relative to this calling activity 

Visit the dedicated repository for further details.

Sharing the files captured with other apps

The file provider authority specified in the Maoni.Builder constructor allows you to share the screenshot capture and logs files to other apps (depending on your callback implementation). By default, Maoni stores the files captured in your application cache directory, but this is (again) entirely customizable.

You must declare a file content provider in your AndroidManifest.xml file with an explicit list of sharable directories for other apps to be able to read the screenshot file. For example:

<application>
  <!-- ... -->
  <!-- If not defined yet, declare a file provider to be able to share screenshots captured by Maoni -->
  <provider

android:name="android.support.v4.content.FileProvider"

android:authorities="org.rm3l.maoni.sample.fileprovider"

android:grantUriPermissions="true"

android:exported="false">

<meta-data

 android:name="android.support.FILE_PROVIDER_PATHS"

 android:resource="@xml/filepaths" />
  </provider> </application>

Along with the XML file that specifies the sharable directories (under res/xml/filepaths.xml as specified above):

<paths>
  <!-- By default, Maoni stores files captured (screenshots and logs) in the application cache directory.  
 So you must declare the path '.' as shareable. Specify something else if you are using a different path -->
  <cache-path name="maoni-shares" path="." />
  <!-- <files-path path="maoni-working-dir/" name="myCustomWorkingDirForMaoni" /> --> </paths>

See https://goo.gl/31nStZ for further instructions on how to setup file sharing.

Contribute and Improve Maoni!

Contributions and issue reporting are more than welcome. So to help out, do feel free to fork this repo and open up a pull request. I'll review and merge your changes as quickly as possible.

You can use GitHub issues to report bugs. However, please make sure your description is clear enough and has sufficient instructions to be able to reproduce the issue.

You can also use the sample app to send your feedback with Maoni. ;-)

Building from source

Make sure you have the Android SDK installed.

Also make sure you have the appropriate Build Tools installed. You can install them via the Android's sdkmanager:

sdkmanager "build-tools;25.0.2"

Now you can build the project with the Gradle Wrapper:

./gradlew assembleDebug

You will then find the artifacts under the following folders:

  • maoni/build/outputs/aar/
  • maoni-common/build/libs/
  • maoni-sample/build/outputs/apk/

Translations

I use Crowdin as the translation system. All related resources for localization are automatically generated from files got with Crowdin.

To help out with any translation, please head to Crowdin and request to join the translation team. If your language is not listed there, just drop me an e-mail at < [email protected]>.

Please do not submit GitHub pull requests with translation fixes as any changes will be overwritten with the next update from Crowdin.

Contributing callbacks for Maoni

You can create separate projects that implement any of the Maoni callbacks interfaces ( Validator, Listener, UiListener, Handler or any combination), so users can use them in their projects.

You just have to include maoni-common as a dependency in your project, e.g., with Gradle:

  dependencies {

  // ...
  compile 'org.rm3l:maoni-common:4.0.1'

}

You can write your project in any JVM language of your choice (e.g., Kotlin, as with maoni-slack and maoni-github), as long as the callback implementation can be called from Maoni.

In use in the following apps

(If you use Maoni, please drop me a line at < [email protected]> (or again, fork, modify this file and submit a pull request), so I can list your app(s) here)

Credits

Developed by

License

The MIT License (MIT)  Copyright (c) 2016 Armel Soro  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 

Resources

RxJava SharedPreferences for Android, lightweight and extendable.

Linear layout, that wrap its content to the next line if there is no space in the current line.

OpenALPR is an open source Automatic License Plate Recognition library.

A LayoutManager that must be used with RecyclerView. When list is scrolled views are moved by circular trajectory.

RealParallaxAndroid is a View Pager with a Real Parallax Android Effect.

An image-view with circle loading animation.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes