Capacitor Rate App Versions Save

Let users rate your app using native review app dialog for both Android and iOS.

v6.0.0

3 days ago

What's Changed

New Contributors

Full Changelog: https://github.com/capacitor-community/in-app-review/compare/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.

Migrate by simply replacing capacitor-rate-app with @capacitor-community/in-app-review. Additionally update your imports as follows:

-import { RateApp } from 'capacitor-rate-app';
+import { InAppReview } from '@capacitor-community/in-app-review';
 
-RateApp.requestReview();
+InAppReview.requestReview();

v4.0.3

11 months ago
  • Fix merge conflict in build.gradle

v.4.0.2

11 months ago
  • Refactor usage of Android play libs to use new separated libs instead of monolith (should solve #34 )

v4.0.0

11 months ago

v3.0.0

1 year ago

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

2 years ago

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);
  [...]
}});