Skip to main content

Launch Review

Assists in leaving user reviews/ratings in the App Stores.

  • Launches the platform's App Store page for the current app in order for the user to leave a review.
  • On iOS (10.3 and above) invokes the native in-app rating dialog which allows a user to rate your app without needing to open the App Store.

https://github.com/dpa99c/cordova-launch-review

Stuck on a Cordova issue?

Don't waste precious time on plugin issues.

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.

Installation#

$ npm install cordova-launch-review
$ npm install @ionic-native/launch-review
$ ionic cap sync

Supported Platforms#

  • Android
  • iOS

Usage#

React#

Learn more about using Ionic Native components in React

Angular#

import { LaunchReview } from '@ionic-native/launch-review/ngx';
constructor(private launchReview: LaunchReview) { }
...
this.launchReview.launch()
.then(() => console.log('Successfully launched store app'));
if(this.launchReview.isRatingSupported()){
this.launchReview.rating()
.then(() => console.log('Successfully launched rating dialog'));
}