LIB FEEDBACK

Drive more ratings to your mobile apps

Android only. iOS coming soon!

It's easy to integrate Feedback Lib SDK in your Android app!

1. Download LibFeedback SDK

Sign up in order to get an API key for LibFeedback. We'll also send you your API key and the integration guide. You can download it from here.

Get your API Key and start the integration!

Api key:
Report key:
Report url:
Download SDK
Validation failed. Please try again!
Download SDK only

2. Integrate it in your Android app

Place the AAR file in your app/libs directory and add the dependency in your build.gradle file:

repositories {
 flatDir {
  dirs 'libs'
 }
}

dependencies {
 compile(name: 'feedback-lib', ext:'aar');
}

Add the INTERNET permission

LibFeedback Android SDK will only need an internet connection permission in order to post the user's feedback. Add it to your AndroidManifest.xml file (INTERNET permission might be already added to your application):

<uses-permission android:name="android.permission.INTERNET"/>

3. Show the feedback dialog

You're done! You can now call the feedback dialog whenever you think it'll be a good time for the user.

Feedback.showFeedback(yourActivity, apiKey);

You provide the activity where the feedback dialog is being shown and your api key.

Optional step: customize dialog text

It's easy to customize your feedback dialogs. Just change the constants in strings.xml from your app/res directory and you're done:

<string name="pre_rate_dialog_message">How do you like this app so far?</string>
<string name="pre_rate_dialog_no">So-so</string>
<string name="pre_rate_dialog_yes">Great App</string>
<string name="rate_dialog_title">Rating Next News Lock Screen</string>
<string name="rate_dialog_message"> Would you rate us on Google Play?</string>
<string name="rate_dialog_ok">Yes</string>
<string name="rate_dialog_no">No</string>
<string name="negative_rate_dialog_message">Please tell us what do you think we can do better!</string>
<string name="negative_rate_dialog_send">Send Feedback</string>

If you want to give us feedback, contact support or just say hi, please contact us.