nkrajan / Android-RateThisApp

Android library to show "Rate this app" dialog

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Android-RateThisApp

Android-RateThisApp is an library to show "Rate this app" dialog.

Screen shot

The library monitors the following status

  • How many times is the app launched
  • How long days does it take from the app installation

and show a dialog to engage users to rate the app in Google Play.

How to use

Download

git clone git://github.com:kskkbys/Android-RateThisApp.git

Setting on Eclipse

Import Android-RateThisApp/library in Eclispe. Then, link your application project with this library.

Implementation

Call RateThisApp.onStart(Context) and RateThisApp.showRateDialogIfNeeded(Context) in your launcher activity's onStart() method.

@Override
protected void onStart() {
    super.onStart();

    // Monitor launch times and interval from installation
    RateThisApp.onStart(this);
    // If the criteria is satisfied, "Rate this app" dialog will be shown
    RateThisApp.showRateDialogIfNeeded(this);
}

Custom criteria

The default criteria to show the dialog is as below:

  • App is launched more than 10 times
  • App is launched more than 7 days later than installation.

If you want to use your own criteria, please edit constants in RateThisApp.java.

Contribute this project

If you want to contribute this project, please send pull request. In present, I need contributors who can translate resources from English/Japanese into Spanish, Chinese and other languages.

License

This software is licensed under Apache License 2.0

Author

Keisuke Kobayashi - k.kobayashi.122@gmail.com

About

Android library to show "Rate this app" dialog