Need help upgrading to Ionic Framework 4.0? Get assistance with our Enterprise Migration Services EXPLORE NOW

In App Review

Improve this doc

This plugin does use the iOS class SKStore​Review​Controller to open the inApp review popup available since iOS 10.3

This functionality only works on iOS devices

Repo: https://github.com/omaxlive/com.omarben.inappreview

Installation

  1. Install the Cordova and Ionic Native plugins:
    $ ionic cordova plugin add com.omarben.inappreview
    $ npm install --save @ionic-native/in-app-review@4
    
  2. Add this plugin to your app's module

Supported platforms

Usage

import { InAppReview } from '@ionic-native/in-app-review';


constructor(private inAppReview: InAppReview) { }

...


this.inAppReview.requestReview()
  .then((res: any) => console.log(res))
  .catch((error: any) => console.error(error));

Instance Members

requestReview()

Open the inApp review popup

Returns: Promise<any> Returns a promise that resolves when something happens

API

Native

General