Android-Rate icon indicating copy to clipboard operation
Android-Rate copied to clipboard

Show rate app dialog everytime the application launches

Open pranishres opened this issue 8 years ago • 2 comments

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

pranishres avatar Jan 18 '17 07:01 pranishres

Alternatively try: AppRate.with(this).showRateDialog(this) in your OnCreate

vo55 avatar Mar 02 '17 18:03 vo55

@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);
}

AlexanderLS avatar May 08 '18 18:05 AlexanderLS