cordova-plugin-inapp-reviewdeprecated

Cordova plugin to review app

Usage no npm install needed!

<script type="module">
  import cordovaPluginInappReview from 'https://cdn.skypack.dev/cordova-plugin-inapp-review';
</script>

README

cordova-plugin-inapp-review

NPM version NPM downloads Twitter

| Donate | Your help is appreciated. Create a PR, submit a bug or just grab me :beer: | |-|-|

Index

Supported platforms

| iOS | Android | |-|-| | iOS | Android |

Installation

$ cordova plugin add cordova-plugin-inapp-review

Use variable ANDROID_PLAY_CORE_VERSION to override dependency version on Android.

Methods

Every method returns a promise that fulfills when a call was successful.

requestReviewDialog()

Launches inapp review dialog.

cordova.plugins.InAppReview.requestReviewDialog();

requestReview()

Launches App/Play store page with a review form

cordova.plugins.InAppReview.requestReview();

You can use boilerplate below in most of cases:

cordova.plugins.InAppReview.requestReviewDialog().catch(() => {
   return cordova.plugins.InAppReview.requestReview();
});