Releases: capacitor-community/in-app-review
Releases · capacitor-community/in-app-review
v6.0.0
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();
v4.0.3
v4.0.2
v4.0.0 - Capacitor 5 support
v3.0.0
v2.0.0
Changes:
- Removed step of adding plugin initialization to MainActivity.java for Android
- Migrate to latest project structure recommended for Capacitor plugins
- Support Capacitor 3+
- Updated docs
Migration from previous versions:
- Remove any changes that you did in your MainActivity.java for previous version, specificaly
add(CapacitorRateApp.class);
andimport com.capacitor.rateApp.CapacitorRateApp;
import com.capacitor.rateApp.CapacitorRateApp;
[...]
this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{
[...]
add(CapacitorRateApp.class);
[...]
}});