A library for developers to push users to rate or write a review about their android application.
This library is currently being used in MARTINI.
- Register this project as a library project
- Copy res/values/reviewplz_settings.xml to your project and customize it.
@Override
protected void onCreate(Bundle savedInstanceState) {
..
ReviewPlz.reportLaunch(this);
..
}
void significantAction() {
..
ReviewPlz.reportSignificantAction(this);
..
}
void whereYouWantToShowDialog() {
ReviewPlz.showPushDialog(this);
}
import com.ultracaption.library.android.reviewplz.ReviewPlz.ReviewPlzDialog;
public class ReviewPushDialog extends ReviewPlzDialog {
..
public void onReviewButtonClick(View view) {
okClicked();
}
public void onLaterButtonClick(View view) {
laterClicked();
}
public void onRejectButtonClick(View view) {
rejectClicked();
}
..
}
void whereYouWantToShowDialog() {
ReviewPlz.showPushDialog(this, new ReviewPushDialog(), "review");
}