We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
Alternatively try: AppRate.with(this).showRateDialog(this) in your OnCreate
Sorry, something went wrong.
@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); }
No branches or pull requests
Can someone please tell me how to show this rate app dialog everytime the app launches.
I have set
but its not working
The text was updated successfully, but these errors were encountered: