I need a Capacitor plugin that offers me the following two features:
Request an app review from within the app.
Open the app store so that the user can submit a review there.
The types could look like this:
export interface AppReviewPlugin {
/**
* Open the App Store page for the current app and, if possible, open the dialog to leave a review.
*
* Only available on Android and iOS.
*
* @since 6.0.0
*/
openAppStore(): Promise<void>;
/**
* Request an in-app review.
*
* Only available on Android and iOS.
*
* @since 6.0.0
*/
requestReview(): Promise<void>;
}
If someone wants to work on this issue, please let me know before starting. I will then create the boilerplate code first so that you only have to create the actual implementation.
Name
App Review
Platform(s)
Description
I need a Capacitor plugin that offers me the following two features:
The types could look like this:
If someone wants to work on this issue, please let me know before starting. I will then create the boilerplate code first so that you only have to create the actual implementation.
Additional context
No response
Before submitting