advanced_in_app_review
iOS 및 안드로이드용 고급 앱 리뷰. 설치 후 정의된 조건(일수 등)을 충족한 후에만 앱 내 리뷰를 표시하려고 시도합니다.
Android 및 iOS에서 앱 내 리뷰/시스템 평가 팝업을 표시하기 위한 플러터 플러그인입니다. 사용자가 앱에 평점을 부여하는 것을 쉽게 만듭니다.
{"sdk":"flutter"}^2.0.11^2.5.5{"sdk":"flutter"}^1.0.0아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A Flutter plugin that lets you show a review pop up where users can leave a review for your app without needing to leave your app.
The average end-user will only write a review if something is wrong with your App. This leads to an unfairly negative skew in the ratings, when the majority of satisfied customers don’t leave reviews and only the dissatisfied ones do. In order to counter-balance the negatives, advanced_in_app_review prompts the user to write a review, but only after the developer knows they are satisfied. For example, you may only show the popup if the user has been using it for more than a week, and has done at least 5 significant events (the core functionality of your App). The rules are fully customizable for your App and easy to setup.
It uses the In-App Review API on Android and the SKStoreReviewController on iOS/MacOS.
The Play In-App Review library is a part of the Google Play Core libraries. Please include the following Gradle dependency to integrate the Play In-App Review Library. More info see Android doc.
// In your app’s build.gradle file:
...
dependencies {
// This dependency is downloaded from the Google’s Maven repository.
// So, make sure you also include that repository in your project's build.gradle file.
implementation 'com.google.android.play:review:2.0.1'
// For Kotlin users also add the Kotlin extensions library for Play In-App Review:
implementation 'com.google.android.play:review-ktx:2.0.1'
...
}
@override
void initState() {
super.initState();
initPlatformState();
AdvancedInAppReview()
.setMinDaysBeforeRemind(7)
.setMinDaysAfterInstall(2)
.setMinLaunchTimes(2)
.setMinSecondsBeforeShowDialog(4)
.monitor();
}
Google encourages developers not to spam users with review requests right when they first start an app, instead asking studios to prompt people only after they've used the application for a while. Developers also shouldn't interrupt users in the middle of a task. After leaving a review or aborting, people should be able to continue whatever they were doing seamlessly.
Android decides when and if such a review view will be presented to the user. So please do not wonder if the view is not presented during debugging. As Google also noted, it will not be working in debug mode. Please see https://developer.android.com/guide/playcore/in-app-review/test
Requires Android 5 Lollipop (API 21) or higher and the Google Play Store to be installed.
Requires iOS version 10.3
Issues & pull requests are more than welcome!