Home

Awesome

AppRate

How to install and use

  1. Put the AppRate jar in your libs folder or add AppRate as a library project.
  1. Use AppRate as follows in your MAIN activity:
new AppRate(this).init();

Features

new AppRate(this)
	.setShowIfAppHasCrashed(false)
	.init();
new AppRate(this)
	.setMinDaysUntilPrompt(7)
	.setMinLaunchesUntilPrompt(20)
	.init();
AlertDialog.Builder builder = new AlertDialog.Builder(this)
	.setCustomTitle(myCustomTitleView)
	.setIcon(R.drawable.my_custom_icon)
	.setMessage("My custom message")
	.setPositiveButton("My custom positive button", null)
	.setNegativeButton("My custom negative button", null)
	.setNeutralButton("My custom neutral button", null);

new AppRate(this)
	.setCustomDialog(builder)
	.init();
new AppRate(this)
	.setOnClickListener(new DialogInterface.OnClickListener() {
		@Override
		public void onClick(DialogInterface dialog, int which) {
			// Do something.
		}
	})
	.init();

Screenshots

Screenshot 1 Screenshot 2

License

This content is released under the MIT License.