{"id":22125463,"url":"https://github.com/kuromadara/direct_caller_sim_choice","last_synced_at":"2026-01-22T08:33:59.948Z","repository":{"id":148711651,"uuid":"620755514","full_name":"kuromadara/direct_caller_sim_choice","owner":"kuromadara","description":" direct_caller_sim_choice is a Flutter library that allows you to make phone calls directly from your app.","archived":false,"fork":false,"pushed_at":"2024-09-12T09:43:47.000Z","size":34,"stargazers_count":2,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-25T21:51:14.804Z","etag":null,"topics":["caller","collaborate","flutter","flutter-package","github-campus-experts"],"latest_commit_sha":null,"homepage":"","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/kuromadara.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","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},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":"dayd","custom":null}},"created_at":"2023-03-29T10:03:40.000Z","updated_at":"2025-04-11T09:41:41.000Z","dependencies_parsed_at":"2024-09-12T19:41:34.289Z","dependency_job_id":null,"html_url":"https://github.com/kuromadara/direct_caller_sim_choice","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/kuromadara/direct_caller_sim_choice","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuromadara%2Fdirect_caller_sim_choice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuromadara%2Fdirect_caller_sim_choice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuromadara%2Fdirect_caller_sim_choice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuromadara%2Fdirect_caller_sim_choice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kuromadara","download_url":"https://codeload.github.com/kuromadara/direct_caller_sim_choice/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuromadara%2Fdirect_caller_sim_choice/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28659518,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T01:17:37.254Z","status":"online","status_checked_at":"2026-01-22T02:00:07.137Z","response_time":144,"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":["caller","collaborate","flutter","flutter-package","github-campus-experts"],"created_at":"2024-12-01T16:31:14.375Z","updated_at":"2026-01-22T08:33:59.934Z","avatar_url":"https://github.com/kuromadara.png","language":"Dart","funding_links":["https://buymeacoffee.com/dayd","https://www.buymeacoffee.com/dayd"],"categories":[],"sub_categories":[],"readme":"\u003c!--\nThis README describes the package. If you publish this package to pub.dev,\nthis README's contents appear on the landing page for your package.\n\nFor information about how to write a good package README, see the guide for\n[writing package pages](https://dart.dev/guides/libraries/writing-package-pages).\n\nFor general information about developing packages, see the Dart guide for\n[creating packages](https://dart.dev/guides/libraries/create-library-packages)\nand the Flutter guide for\n[developing packages and plugins](https://flutter.dev/developing-packages).\n--\u003e\n\n# Direct Caller with SIM Choice\n\n`direct_caller_sim_choice` is a Dart library for Flutter that allows you to make phone calls directly from your app, with an option to select the SIM card for devices that have dual SIM support.\n\n## Support the Project\n\nIf you find this package helpful, consider buying me a coffee to support the ongoing development and maintenance of this project:\n\n[![\"Buy Me A Coffee\"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/dayd)\n\n## Features\n\nMakes Call Directly without user interaction. Ideal for application that has emergency call services. One examlple would be a distress app that makes phone call when phone is shaked three times.\n\n## Getting started\n\n## Installation\n\nAdd direct_caller_sim_choice as a dependency in your pubspec.yaml file:\n\n```yaml\ndependencies:\n  direct_caller_sim_choice: ^1.0.4\n```\n## Usage\n\nImport the library:\n\n```dart\nimport 'package:direct_caller_sim_choice/direct_caller_sim_choice.dart';\n```\n\nTo make a phone call, simply call the `makePhoneCall` method:\n\n```dart\nfinal DirectCaller directCaller = DirectCaller();\ndirectCaller.makePhoneCall('1234567890', simSlot: 2);\n```\n\n**NOTE** ~~The phone number must be a string with 10 digits.~~ Emergency numbers are not necessarily 10 digit. So I removed the feature. The `simSlot` parameter is optional and defaults to 1 (the first SIM card slot). If the device does not support dual SIM, the library will use the first SIM card slot.\n\n## Platform Support\n\n`direct_caller_sim_choice` currently supports only Android devices. On other platforms, the library returns `false` when the `makePhoneCall` method is called.\n\n## Permissions\n\nIn your app's `AndroidManifest.xml` file, make sure you have the CALL_PHONE permission:\n\n```xml\n\u003cuses-permission android:name=\"android.permission.CALL_PHONE\" /\u003e\n```\n\n## Contributions\n\nContributions are welcome! Feel free to submit a pull request or open an issue if you find a bug or have a feature request.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuromadara%2Fdirect_caller_sim_choice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkuromadara%2Fdirect_caller_sim_choice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuromadara%2Fdirect_caller_sim_choice/lists"}