Android-Rate
Android-Rate copied to clipboard
Show rate app dialog everytime the application launches
Can someone please tell me how to show this rate app dialog everytime the app launches. I have set
AppRate.with(this).setInstallDays(0)
.setLaunchTimes(0)
.setRemindInterval(1) // default 1
but its not working
Alternatively try: AppRate.with(this).showRateDialog(this) in your OnCreate
@pranishres @philipbarwi In Vorlonsoft/AndroidRate release 1.1.7:
Every time unless user click RateIt button or click Never button
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
AppRate.with(this)
.setInstallDays((byte) 0) // default 10, 0 means install day
.setLaunchTimes((byte) 0) // default 10
.setRemindInterval((byte) 0) // default 1
.monitor();
AppRate.showRateDialogIfMeetsConditions(this);
}
Every time
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
AppRate.with(this).showRateDialog(this);
}