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
- Host: GitHub
- URL: https://github.com/hu2di/ratedialog
- Owner: hu2di
- License: apache-2.0
- Created: 2017-05-17T03:58:47.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-17T02:04:39.000Z (over 8 years ago)
- Last Synced: 2024-05-31T16:59:31.109Z (about 2 years ago)
- Topics: android, dialog, google-play, library, rate
- Language: Java
- Homepage:
- Size: 217 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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