Application-Integrated "Send Feedback"

Viewed 7295

I'm looking for an .jar or library project that will allow users of my application to easily send feedback from inside the application about their experience.

As asked in this question, I am looking for something similar to the crash reporting tool used in Google Plus, that allows the user to get in contact with me, besides leaving bad reviews.

Some not-quite there solutions that came up in answers to other questions:

  1. ACRA : Application Crash Report for Android (functions as a crash reporting tool)
  2. Hockey Kit: Helps distribute betas, nothing related to send feedback to developer.

Does a library like this exist? Is there an easy way to gather user feedback from within the application?

4 Answers

i think you need to use a tool like instabug it provides you a way for collecting bug reports and feedbacks about user experience and also you can talk back to them

As of this date (27th April 2018), HockeyApp can handle this issue. It enables users to send In-app Feedback to developers, which then developers can access through a Dashboard.

Check out: www.hockeyapp.net

The problem I've had with implementing HockeyApp, is that, the feedback form requires the user to add unnecessary details like name, email, etc. I can't seem to find a way to add these detail programmatically.

Related