An open API service indexing awesome lists of open source software.

https://github.com/hu2di/ratedialog

The android library show dialog rate on app and on Google Play Store
https://github.com/hu2di/ratedialog

android dialog google-play library rate

Last synced: about 1 month ago
JSON representation

The android library show dialog rate on app and on Google Play Store

Awesome Lists containing this project

README

          

### RateDialog
The android library show dialog rate on app and on Google Play Store

### Screenshot

### SDK Support
Support from SDK version 14 onwards

### Download
JitPack:

Step 1. Add the JitPack repository to your build file

Add it in your root build.gradle at the end of repositories:
```groovy
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
Step 2. Add the dependency
```groovy
dependencies {
implementation 'com.github.hu2di:RateDialog:1.0.6'
}
```

### Example
Add in your activity to show dialog rate
```java
new MyRate(context,
new RateListener() {
@Override
public void oneStar() {
}

@Override
public void twoStars() {
}

@Override
public void threeStars() {
}

@Override
public void fourStars() {
}

@Override
public void fiveStars() {
}
},
R.mipmap.ic_launcher)
.show();
```
Change language dialog rate
```java
new MyRate(context,
new RateListener() {
@Override
public void oneStar() {
}

@Override
public void twoStars() {
}

@Override
public void threeStars() {
}

@Override
public void fourStars() {
}

@Override
public void fiveStars() {
}
},
"Comment aimeriez-vous cette application?",
R.mipmap.ic_launcher)
.show();
```

### About
- Created by HuyHung Dinh
- GitHub: https://github.com/hu2di
- Email: hebitaxy@gmail.com
- Website: https://hu2di.github.io