-
Notifications
You must be signed in to change notification settings - Fork 122
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
Is it safe to call this on every startup? #16
Comments
FYI, its not safe to call on every startup. On android it takes the user to the store everytime you open the app. For now you need to keep track yourself if it has been shown or not. |
@Theunodb Having the same question. I currently only call Because in my current build I see the popup coming up every time even if I have already rated the app but I am not sure if this is just related to my app ownership or to the ad hoc distribution. |
As far as i know On iOS the OS determines when to display the review popup. I can confirm that it doesn’t display every time on iOS for live releases. It does however display on debug for every request. I ended up keeping track myself just in case |
Okay my update is published in the app store. The situation is as follows: iOS: Android: |
In my applications i only call the ios on startup and use shared preferences to know when to show android. |
Thank you for the package!
Is it safe to call on every startup? Or do we need to keep track if we requested for review before?
Ex.
If you do the request on every startup / init, will the user see it every single time? Or do you need to keep track in shared preferences / somewhere to ensure that you only send the request once per version?
The text was updated successfully, but these errors were encountered: