Skip to content

Releases: capacitor-community/in-app-review

v6.0.0

22 Apr 10:44
d19df44
Compare
Choose a tag to compare

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

08 May 15:58
Compare
Choose a tag to compare
  • Fix merge conflict in build.gradle

v4.0.2

07 May 09:28
Compare
Choose a tag to compare
  • Refactor usage of Android play libs to use new separated libs instead of monolith (should solve #34 )

v4.0.0 - Capacitor 5 support

06 May 18:52
Compare
Choose a tag to compare

v3.0.0

14 Aug 08:42
Compare
Choose a tag to compare

Changes:

  • Supports Capacitor 4 (for Capacitor 3 use v2.0.0 of this plugin)

Contributors:

  • Big thanks to @rdlabo for this release

v2.0.0

26 Sep 16:29
Compare
Choose a tag to compare

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); and import com.capacitor.rateApp.CapacitorRateApp;
import com.capacitor.rateApp.CapacitorRateApp;
[...]
this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{
  [...]
  add(CapacitorRateApp.class);
  [...]
}});