Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to check if a user has rated your app on the app store?

I currently have a method that prompts the user to rate my app on the store after the first 20 times they load the app, then the next 30 loads, then the next 40 loads, and so on. The user has 2 options at the UIAlert: RATE NOW or MAYBE LATER. I would really like to avoid annoying the users who have already taken the time to rate the app. Is there a simple way to do this?

Despite the bad form, I'm answering my own question with the best (poor) solution I can manage, so I'm looking for something better than that.

Many thanks to anyone taking the time to think about this one!

like image 877
PengOne Avatar asked Mar 15 '11 22:03

PengOne


People also ask

How do you to check if a user has rated your app on the Google Play?

Review your app's policy status Select an app. On the left menu, select Policy status. Review your policy status: If you see the message "No issues found," no enforcement actions have been taken against your app, and you don't need to do anything.

How long does it take for ratings to show on App Store?

Review status On average, 90% of submissions are reviewed in less than 24 hours. You'll be notified by email of status changes. You can also check the review status of your submission in the My Apps section of App Store Connect or on the App Store Connect app for iPhone and iPad.


1 Answers

My own poor solution:

If the user selects RATE NOW, then never prompt the user again. Otherwise, continue asking on the schedule described.

Problems with this solution:

  • The user may not actually submit a review after clicking NOW.
  • The user may rate the app independently from my prompting, and I certainly don't want to annoy someone who takes the time to rate it.
like image 173
PengOne Avatar answered Nov 15 '22 19:11

PengOne