Rate Me

Android library that shows a dialog to let the user rate this app in the Google Play store

License

License

GroupId

GroupId

com.androidsx
ArtifactId

ArtifactId

rate-me
Last Version

Last Version

4.0.3
Release Date

Release Date

Type

Type

aar
Description

Description

Rate Me
Android library that shows a dialog to let the user rate this app in the Google Play store
Project URL

Project URL

https://github.com/androidsx/rate-me
Source Code Management

Source Code Management

https://github.com/androidsx/rate-me

Download rate-me

How to add to project

<!-- https://jarcasting.com/artifacts/com.androidsx/rate-me/ -->
<dependency>
    <groupId>com.androidsx</groupId>
    <artifactId>rate-me</artifactId>
    <version>4.0.3</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.androidsx/rate-me/
implementation 'com.androidsx:rate-me:4.0.3'
// https://jarcasting.com/artifacts/com.androidsx/rate-me/
implementation ("com.androidsx:rate-me:4.0.3")
'com.androidsx:rate-me:aar:4.0.3'
<dependency org="com.androidsx" name="rate-me" rev="4.0.3">
  <artifact name="rate-me" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.androidsx', module='rate-me', version='4.0.3')
)
libraryDependencies += "com.androidsx" % "rate-me" % "4.0.3"
[com.androidsx/rate-me "4.0.3"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

Rate-Me Android Arsenal

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.

com.androidsx

Androidsx

Android specialists

Versions

Version
4.0.3
4.0.2
4.0.1
4.0.0
3.0.5
3.0.4
3.0.2