In App Review
This plugin does use the iOS class SKStoreReviewController 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
- Install the Cordova and Ionic Native plugins:
$ ionic cordova plugin add com.omarben.inappreview $ npm install --save @ionic-native/in-app-review@4
- Add this plugin to your app's module
Supported platforms
- iOS
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