Why the SKStoreReviewController does not let me submit a review?

IosSkstorereviewcontroller

Ios Problem Overview


I succeeded implementing the SKStoreReviewController. But when the prompt comes up, the "Submit" button is grey & disabled.

SKStoreReviewController

I thought it was because I was in debug mode, but when I ship the app with Ad-Hoc PP the result is the same.

Why?

Ios Solutions


Solution 1 - Ios

Apple provides the answer for you right here.

> When you call this method in your shipping app and a rating/review > request view is displayed, the system handles the entire process for > you.

Emphasis mine.

To help clarify this some:

  1. When building in Xcode, you will see what the OP shows in the screenshot
  2. When building from a CI solution for release, you will not see anything
  3. When running from TestFlight, you will not see anything
  4. When running from the AppStore, only users who purchased (free or paid) your app will see it up to three times a year
  5. When running from the AppStore, users who obtain your app via Connect promo codes will not see it
  6. Users who disable In-App Ratings & Reviews under iTunes & App Stores in the Settings app will never see these prompts under any condition

Apple spells out point 3 here on the provided link:

> When you call this method while your app is still in development mode, > a rating/review request view is always displayed so that you can test > the user interface and experience. However, this method has no effect > when you call it in an app that you distribute using TestFlight.

And for point 5, here is what Apple has to say on it at the provided link:

> However, customers aren’t able to rate or review an app that was > downloaded using an iTunes Connect promo code.

So sorry, you can't pad reviews via promo codes ;)

Solution 2 - Ios

Submit button is disabled in development version and the View doesn't even show up in Test Flight versions.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRiciView Question on Stackoverflow
Solution 1 - IosCodeBenderView Answer on Stackoverflow
Solution 2 - IosEsqarrouthView Answer on Stackoverflow