Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show rate app dialog everytime the application launches #122

Open
pranishres opened this issue Jan 18, 2017 · 2 comments
Open

Show rate app dialog everytime the application launches #122

pranishres opened this issue Jan 18, 2017 · 2 comments

Comments

@pranishres
Copy link

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

@vo55
Copy link

vo55 commented Mar 2, 2017

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

@AlexanderLS
Copy link

AlexanderLS commented May 8, 2018

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants