- Notifications
You must be signed in to change notification settings - Fork0
ultracaption/reviewplz
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A library for developers to push users to rate or write a review about their android application.
This library is currently being used inMARTINI.
- Register this project as a library project
- Copy res/values/reviewplz_settings.xml to your project and customize it.
@Overrideprotected 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");}