Skip to content

v6.0.0

Latest
Compare
Choose a tag to compare
@tafelnl tafelnl released this 22 Apr 10:44
· 1 commit to main since this release
d19df44

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();