{"id":22436612,"url":"https://github.com/yash-garg/appcheck","last_synced_at":"2025-08-01T15:31:26.243Z","repository":{"id":40757553,"uuid":"471026847","full_name":"Yash-Garg/AppCheck","owner":"Yash-Garg","description":"A Flutter plugin that allows you to check if an app is installed/enabled, launch an app and get the list of installed apps.","archived":false,"fork":false,"pushed_at":"2025-03-06T18:31:29.000Z","size":537,"stargazers_count":14,"open_issues_count":0,"forks_count":24,"subscribers_count":2,"default_branch":"develop","last_synced_at":"2025-04-02T09:38:56.486Z","etag":null,"topics":["android","dart","flutter","flutter-package","ios","kotlin","method-channel","swift"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/appcheck","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/Yash-Garg.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-03-17T14:46:30.000Z","updated_at":"2025-03-18T04:08:51.000Z","dependencies_parsed_at":"2022-07-29T09:08:54.426Z","dependency_job_id":"7586df4a-3d1d-42c6-aae9-d1fcbfb8121b","html_url":"https://github.com/Yash-Garg/AppCheck","commit_stats":{"total_commits":23,"total_committers":3,"mean_commits":7.666666666666667,"dds":0.08695652173913049,"last_synced_commit":"6c5271a673088e1e80923134a8ee9060db56e3e1"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/Yash-Garg/AppCheck","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yash-Garg%2FAppCheck","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yash-Garg%2FAppCheck/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yash-Garg%2FAppCheck/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yash-Garg%2FAppCheck/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Yash-Garg","download_url":"https://codeload.github.com/Yash-Garg/AppCheck/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yash-Garg%2FAppCheck/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268250411,"owners_count":24219825,"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-08-01T02:00:08.611Z","response_time":67,"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":["android","dart","flutter","flutter-package","ios","kotlin","method-channel","swift"],"created_at":"2024-12-06T00:08:35.617Z","updated_at":"2025-08-01T15:31:25.760Z","avatar_url":"https://github.com/Yash-Garg.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AppCheck\n\n[![Pub](https://img.shields.io/pub/v/appcheck.svg)](https://pub.dartlang.org/packages/appcheck)\n\nA Flutter plugin that allows you to check if an app is installed/enabled, launch an app and get the list of installed apps.\n\n## Installation\n\nFirst, add `appcheck` as a [dependency in your pubspec.yaml file](https://flutter.io/using-packages/).\n\n## Methods available\n\n- `checkAvailability(String uri)`\n- `isAppInstalled(String uri)`\n- `getInstalledApps()` (only for **Android**)\n- `isAppEnabled(String uri)` (only for **Android**)\n- `launchApp(String uri)`\n\n## Permissions\n\nBefore using the plugin, you need to add declarations in your configuration files.\n\n### Android\n\nIf you want to use the `getInstalledApps()` function, you need the `QUERY_ALL_PACKAGES` permission.\n\n ```xml\n\u003cuses-permission android:name=\"android.permission.QUERY_ALL_PACKAGES\" /\u003e\n ```\n\n If you only want to check certain apps and you know the packageName, add them via queries in AndroidManifest.xml.\n\n ```xml\n\u003cqueries\u003e\n    \u003cpackage android:name=\"com.google.android.apps.maps\"/\u003e\n\u003c/queries\u003e\n ```\n\n### iOS\n\nMake sure your `Info.plist` file includes the necessary URL schemes under `LSApplicationQueriesSchemes` to check and launch other apps:\n\n```xml\n\u003ckey\u003eLSApplicationQueriesSchemes\u003c/key\u003e\n\u003carray\u003e\n    \u003cstring\u003escheme1\u003c/string\u003e\n    \u003cstring\u003escheme2\u003c/string\u003e\n    \u003c!-- Add more schemes as needed --\u003e\n\u003c/array\u003e\n```\n\nExample:\n\n```xml\n\u003ckey\u003eLSApplicationQueriesSchemes\u003c/key\u003e\n\u003carray\u003e\n    \u003cstring\u003efb\u003c/string\u003e\n    \u003cstring\u003etwitter\u003c/string\u003e\n    \u003cstring\u003einstagram\u003c/string\u003e\n    \u003cstring\u003ewhatsapp\u003c/string\u003e\n    \u003cstring\u003eyoutube\u003c/string\u003e\n    \u003cstring\u003ecomgooglemaps\u003c/string\u003e\n    \u003cstring\u003ehttp\u003c/string\u003e\n    \u003cstring\u003ehttps\u003c/string\u003e\n    \u003cstring\u003emailto\u003c/string\u003e\n    \u003c!-- Add more schemes as needed --\u003e\n\u003c/array\u003e\n```\n\nCheck out [Example](https://github.com/Yash-Garg/appcheck/blob/develop/example/lib/main.dart).\n\n## Screenshots\n\n\u003cp align=\"center\"\u003e\n  \u003cimg width=\"48.2%\" src=\"https://raw.githubusercontent.com/Yash-Garg/AppCheck/develop/images/screen-android.png\"\u003e\n  \u003cimg width=\"47%\" src=\"https://raw.githubusercontent.com/Yash-Garg/AppCheck/develop/images/screen-ios.png\"\u003e\n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyash-garg%2Fappcheck","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyash-garg%2Fappcheck","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyash-garg%2Fappcheck/lists"}