What's Changed
New Contributors
Full Changelog: v4.0.3...v6.0.0
Breaking changes
Important
This package moved from capacitor-rate-app
(by @Nodonisko) to @capacitor-community/in-app-review
.
Previous users of the package capacitor-rate-app
are required to migrate to @capacitor-community/in-app-review
in order to receive continued support and updates.
Migration guide
1. Uninstall old package and install new package
npm uninstall capacitor-rate-app
npm install @capacitor-community/in-app-review
npx cap sync
2. Update imports and references in your web code
-import { RateApp } from 'capacitor-rate-app';
+import { InAppReview } from '@capacitor-community/in-app-review';
-RateApp.requestReview();
+InAppReview.requestReview();