Skip to content
This repository has been archived by the owner on May 7, 2022. It is now read-only.

Provides a basic implementation for requesting app reviews for mobile apps on the Apple AppStore and Google PlayStore.

License

Notifications You must be signed in to change notification settings

jeffreylanters/unity-request-review

Repository files navigation

readme splash

license openupm build deployment stars awesome size sponsors donate

Provides a basic implementation for requesting app reviews for mobile apps on the Apple AppStore and Google PlayStore.

Installation · Documentation · License

Made with ♥ by Jeffrey Lanters


Installation

Using the Unity Package Manager

Install the latest stable release using the Unity Package Manager by adding the following line to your manifest.json file located within your project's Packages directory, or by adding the Git URL to the Package Manager Window inside of Unity.

"nl.elraccoone.request-review": "git+https://github.com/jeffreylanters/unity-request-review"

Using OpenUPM

The module is availble on the OpenUPM package registry, you can install the latest stable release using the OpenUPM Package manager's Command Line Tool using the following command.

openupm add nl.elraccoone.request-review

Documentation

This module focusses on only requesting a review while trying to keep the code as minimalisic as posible wihout prefabs and monobehaviours.

Usage

Use the RequestReview namespace, and call the Open method in order to open the review request.

using ElRaccoone.RequestReview;
public class Main {
  private void Start () {
    RequestReview.Open ();
  }
}

iOS 10.3 or newer notes

The module tells StoreKit to ask the user to rate or review your app, if appropriate.

Although you should call this method when it makes sense in the user experience flow of your app, the actual display of a rating/review request view is governed by App Store policy. Because this method may or may not present an alert, it's not appropriate to call it in response to a button tap or other user action.

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.

iOS 10.2 or lower notes

Coming soon!

Support for this platform has yet to be implemented.

Android notes

Coming soon!

Support for this platform has yet to be implemented.

About

Provides a basic implementation for requesting app reviews for mobile apps on the Apple AppStore and Google PlayStore.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Sponsor this project