-
Notifications
You must be signed in to change notification settings - Fork 1
Store Review Controller
You can ask users to rate and review your app at appropriate times throughout the user experience. Make the request when users are most likely to feel satisfaction with your app, such as when they’ve completed an action, level, or task. Make sure not to interrupt their activity.
To give users an easy way to provide feedback on the App Store without leaving your app, use the ISN_SKStoreReviewController. You can prompt for ratings up to three times in a 365-day period. Users will submit a rating through the standardized prompt, and can authenticate with Touch ID to write and submit a review.
Ensure that your support contact information is easy to find in your app and on your App Store product page. It gives users a direct way to reach you if they encounter difficulties, and gives you an opportunity to resolve negative experiences that may otherwise lead to poor reviews.
See the example below:
using SA.iOS.StoreKit;
...
ISN_SKStoreReviewController.RequestReview();
The result will be a popup similar to the one on a picture below:
You can't get the result of the review request, or find out how many stars user has given your app. The reason is, Apple wants users to only do a fair review, and this is prohibited for app developers to give any kind of reward to users for a positive feedback.
To enable a user to initiate a review as a result of an action in the UI use a deep link to the App Store page for your app with the query parameter action=write-review
appended to the URL.
using SA.iOS.UIKit;
...
string writeReviewURL = "https://itunes.apple.com/app/idXXXXXXXXXX?action=write-review";
ISN_UIApplication.OpenURL(writeReviewURL);
Reliable and high-quality Unity Development service. Let's Talk!
Website | AssetStore | LinkedIn | Youtube | Scripting Reference
- Getting Started
- Authentication
- Game Center UI
- Leaderboards
- Default Leaderboard
- Achievements
- Saving A Game
- Access Point
- iTunes Connect Setup
- StoreKit Initialization
- Purchase flow
- Receipt Validation
- Store Review Controller
- Storefront API
- Subscription Offers