Rate-Me

Additional

Language
Java
Version
v2.0.4 (Mar 14, 2015)
Created
Mar 17, 2014
Updated
Oct 17, 2020 (Retired)
Owner
Androidsx (androidsx)
Contributors
Omar Pera (ompemi)
RubenKid
Pablo Pera (espinchi)
Lucas Ponzoda Vaño (Pocho) (pocho23)
Lionscribe Software LLC (lionscribe)
MFlisar
Bruno Bonifacio Gauglitz (BoniGauglitz)
Marta Rodriguez (martarodriguezm)
8
Activity
Badge
Generate
Download
Source code

Rate-Me

Rate Me is an Android library that shows dialog to suggest the user to rate the application in the Google Play Store.

With a little twist: if the rating is positive, we take the user to the Play Store directly. Otherwise, we ask him for feedback via email. (This is all configurable.)

How to integrate

Add this dependency in your build.gradle:

dependencies {
    compile 'com.androidsx:rate-me:4.0.3'
}

Find the latest version in Maven Central.

How to use

The simplest integration:

new RateMeDialog.Builder(getPackageName())
        .enableFeedbackByEmail("email@example.com")
        .build()
        .show(getFragmentManager(), "plain-dialog");

Have a look at the sample project for other examples.

Automatic timer

You can make the dialog appear after a number of times your app has been opened or after a number of days after the install date:

RateMeDialogTimer.onStart(this);
if (RateMeDialogTimer.shouldShowRateDialog(this, 7, 3)) {
 // show the dialog with the code above
}

License

Licensed under the MIT License. See the LICENSE.md file for more details.