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?
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#
- Capacitor
- Cordova
- Enterprise
$ npm install cordova-launch-review $ npm install @ionic-native/launch-review $ ionic cap sync
$ ionic cordova plugin add cordova-launch-review $ npm install @ionic-native/launch-review
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
#
Supported Platforms- Android
- iOS
#
Usage#
ReactLearn more about using Ionic Native components in React
#
Angularimport { 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'));}