Smart App Rate

Smart app rate dialog for Android which takes user rating into consideration. If the user rates the app below the defined threshold rating, the dialog will change into a feedback form. Otherwise, It will take the user to the Google PlayStore.

Features

  • Auto fetches the app icon to appear on top of the dialog
  • Make the dialog appear on a defined app session
  • Opens Feedback form if the user rates below the minimum threshold
  • Extracts the accent color from your app's theme
  • Customizable title, positive button and negative button texts
  • Customizable button colors and backgrounds
  • Override dialog redirection to Google Play or Feedback form according to your needs

If you want the dialog builder method and move the code to the setOnClickListener() method of your Activity class.

Installation

Gradle

Add it as a dependency in your app's build.gradle file

dependencies {
      implementation 'com.github.vimalcvs:Smart-Rating-App:v1.0.0'
}

build.gradle

Add JitPack repository to your build file
Add it in your root build.gradle at the end of repositories:

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

How to use

Use the dialog as it is setOnClickListener()

    RateDialogManager.showRateDialog(MainActivity.this, savedInstanceState);

Add Email

Add email res/values/ to your strings.xml file

    <string name="email">[email protected]</string>

GitHub