{"id":15497819,"url":"https://github.com/x-slayer/app_version_checker","last_synced_at":"2025-09-04T05:07:24.751Z","repository":{"id":41494771,"uuid":"434219961","full_name":"X-SLAYER/app_version_checker","owner":"X-SLAYER","description":"A lightweight flutter plugin to check if your app is up-to-date on Google Play Store or Apple App Store","archived":false,"fork":false,"pushed_at":"2024-06-24T14:42:45.000Z","size":88,"stargazers_count":15,"open_issues_count":11,"forks_count":54,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-04T05:05:00.771Z","etag":null,"topics":["apkpure","applestore","checker","dart","flutter","playstore","version","version-check"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/flutter_app_version_checker","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/X-SLAYER.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":"2021-12-02T12:53:43.000Z","updated_at":"2025-08-27T12:29:19.000Z","dependencies_parsed_at":"2024-11-01T11:00:50.073Z","dependency_job_id":"d3410356-cef1-4534-bfa0-15342b689db9","html_url":"https://github.com/X-SLAYER/app_version_checker","commit_stats":{"total_commits":20,"total_committers":2,"mean_commits":10.0,"dds":"0.050000000000000044","last_synced_commit":"a18889d316f3f884f674bb703a38a5d0ab40392a"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/X-SLAYER/app_version_checker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/X-SLAYER%2Fapp_version_checker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/X-SLAYER%2Fapp_version_checker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/X-SLAYER%2Fapp_version_checker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/X-SLAYER%2Fapp_version_checker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/X-SLAYER","download_url":"https://codeload.github.com/X-SLAYER/app_version_checker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/X-SLAYER%2Fapp_version_checker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273555462,"owners_count":25126316,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-04T02:00:08.968Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["apkpure","applestore","checker","dart","flutter","playstore","version","version-check"],"created_at":"2024-10-02T08:40:49.434Z","updated_at":"2025-09-04T05:07:24.718Z","avatar_url":"https://github.com/X-SLAYER.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# App Version Checker\n\nthis package is used to check if your app has a new version on playstore or apple app store.\nor you can even check what is the latest version of another app on playstore or apple app store.\n\n### Installing\n\nAdd App Version Checker to your pubspec:\n\n```yaml\ndependencies:\n  flutter_app_version_checker: any # or the latest version on Pub\n```\n\n### Usage\n\n```dart\n  final _checker = AppVersionChecker();\n\n  @override\n  void initState() {\n    super.initState();\n    checkVersion();\n  }\n\n  void checkVersion() async {\n    _checker.checkUpdate().then((value) {\n      print(value.canUpdate); //return true if update is available\n      print(value.currentVersion); //return current app version\n      print(value.newVersion); //return the new app version\n      print(value.appURL); //return the app url\n      print(value.errorMessage); //return error message if found else it will return null\n    });\n  }\n```\n#### Or\n\n```dart\n  final _checker = AppVersionChecker(\n      appId: \"specify the app id (optional)\",\n      currentVersion: \"specify the current version (optional)\");\n...\n```\n\n#### Use on ApkPure Store\n\n```dart\n   final _checker = AppVersionChecker(\n    appId: \"com.vanced.android.youtube\",\n    androidStore: AndroidStore.apkPure,\n  );\n...\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fx-slayer%2Fapp_version_checker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fx-slayer%2Fapp_version_checker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fx-slayer%2Fapp_version_checker/lists"}