{"id":32292712,"url":"https://github.com/eeoom/advanced_in_app_review","last_synced_at":"2026-02-21T08:35:55.594Z","repository":{"id":61972640,"uuid":"460008212","full_name":"eeoom/advanced_in_app_review","owner":"eeoom","description":"A Flutter plugin for showing the In-App Review/System Rating pop up on Android and iOS. It makes it easy for users to rate your app.","archived":false,"fork":false,"pushed_at":"2024-10-31T07:54:44.000Z","size":174,"stargazers_count":14,"open_issues_count":4,"forks_count":10,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-29T11:59:53.754Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eeoom.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-16T13:07:16.000Z","updated_at":"2025-05-02T10:18:09.000Z","dependencies_parsed_at":"2024-01-01T23:51:26.185Z","dependency_job_id":null,"html_url":"https://github.com/eeoom/advanced_in_app_review","commit_stats":{"total_commits":37,"total_committers":3,"mean_commits":"12.333333333333334","dds":0.3513513513513513,"last_synced_commit":"6edc3ea2991f0b5d2ef171437325342abb822aa3"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/eeoom/advanced_in_app_review","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eeoom%2Fadvanced_in_app_review","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eeoom%2Fadvanced_in_app_review/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eeoom%2Fadvanced_in_app_review/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eeoom%2Fadvanced_in_app_review/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eeoom","download_url":"https://codeload.github.com/eeoom/advanced_in_app_review/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eeoom%2Fadvanced_in_app_review/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29677581,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T06:23:40.028Z","status":"ssl_error","status_checked_at":"2026-02-21T06:23:39.222Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-23T03:24:16.134Z","updated_at":"2026-02-21T08:35:55.589Z","avatar_url":"https://github.com/eeoom.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# advanced_in_app_review\n\n# Description\nA 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.\n\nThe 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.\n\nIt uses the [In-App Review](https://developer.android.com/guide/playcore/in-app-review) API on Android and the [SKStoreReviewController](https://developer.apple.com/documentation/storekit/skstorereviewcontroller) on iOS/MacOS.\n\n# Setup (Android only)\n\nThe 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](https://developer.android.com/guide/playcore/in-app-review/kotlin-java).\n\n ```\n // In your app’s build.gradle file:\n ...\n dependencies {\n     // This dependency is downloaded from the Google’s Maven repository.\n     // So, make sure you also include that repository in your project's build.gradle file.\n     implementation 'com.google.android.play:review:2.0.1'\n     // For Kotlin users also add the Kotlin extensions library for Play In-App Review:\n     implementation 'com.google.android.play:review-ktx:2.0.1'\n     ...\n }\n ```\n\n## Usage\n\n### Simple 1-line Setup\n\n```dart\n@override\nvoid initState() {\n  super.initState();\n  initPlatformState();\n  AdvancedInAppReview()\n      .setMinDaysBeforeRemind(7)\n      .setMinDaysAfterInstall(2)\n      .setMinLaunchTimes(2)\n      .setMinSecondsBeforeShowDialog(4)\n      .monitor();\n}\n```\n\n## Important notes for Android\n\nGoogle 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.\n\nAndroid 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\n\n# Requirements\n## Android\nRequires Android 5 Lollipop (API 21) or higher and the Google Play Store to be installed.\n## IOS\nRequires iOS version 10.3\n\nIssues \u0026 pull requests are more than welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feeoom%2Fadvanced_in_app_review","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feeoom%2Fadvanced_in_app_review","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feeoom%2Fadvanced_in_app_review/lists"}