{"id":14971514,"url":"https://github.com/namadgi/biometry-flutter","last_synced_at":"2025-10-26T16:30:41.964Z","repository":{"id":254209567,"uuid":"845826063","full_name":"Namadgi/biometry-flutter","owner":"Namadgi","description":"Flutter package for biometric authentication  Seamless integration of biometric authentication (face, voice, etc.) into your Flutter app.","archived":false,"fork":false,"pushed_at":"2025-02-06T05:40:20.000Z","size":8477,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-08T18:47:33.698Z","etag":null,"topics":["authentication","biometrics","dart","flutter","security"],"latest_commit_sha":null,"homepage":"https://biometry.com.au","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/Namadgi.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":"2024-08-22T02:10:00.000Z","updated_at":"2025-02-06T05:13:27.000Z","dependencies_parsed_at":"2024-08-22T03:28:02.795Z","dependency_job_id":"f4f12cbd-2900-4865-8228-d3cdd482f668","html_url":"https://github.com/Namadgi/biometry-flutter","commit_stats":{"total_commits":8,"total_committers":1,"mean_commits":8.0,"dds":0.0,"last_synced_commit":"590195ae8c1f1bcbed9d2e5435ed7bb693502132"},"previous_names":["funkygeek/biometry-pubdev"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Namadgi%2Fbiometry-flutter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Namadgi%2Fbiometry-flutter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Namadgi%2Fbiometry-flutter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Namadgi%2Fbiometry-flutter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Namadgi","download_url":"https://codeload.github.com/Namadgi/biometry-flutter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238366665,"owners_count":19460167,"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","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":["authentication","biometrics","dart","flutter","security"],"created_at":"2024-09-24T13:45:18.760Z","updated_at":"2025-10-26T16:30:41.958Z","avatar_url":"https://github.com/Namadgi.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Biometry\n\n**Biometry** is a secure, reliable Flutter package designed to simplify biometric authentication and identity verification in mobile applications. Leveraging advanced biometric technologies, Biometry integrates seamlessly with the Biometry API, supporting video-based facial and voice authentication, document verification, user consent management, and secure device telemetry.\n\nThis package is tailored specifically for developers building high-security applications, such as banking, finance, identity verification, and compliance-driven projects.\n\n## Features\n\n- **Biometric Authentication**: Secure facial and voice recognition through video input.\n- **Document Scanning \u0026 Verification**: Built-in scanning using the `flutter_doc_scanner` plugin.\n- **Biometric Scanner Widget**: User-friendly camera widget with guided video capture.\n- **Consent Management**: Integrated consent handling aligned with security best practices.\n- **Device Telemetry**: Automatic collection of comprehensive device metadata.\n- **Extensible \u0026 Testable API**: Designed for ease of testing and extensibility.\n\n## Getting Started\n\n### Prerequisites\n\n- Obtain an API token from [Biometry](https://console.biometrysolutions.com).\n- Flutter SDK version `\u003e=3.0.0 \u003c4.0.0`\n- Android minimum SDK version: 21\n- iOS minimum platform version: 13.0\n\n### Installation\n\nAdd to your `pubspec.yaml`:\n\n```yaml\ndependencies:\n  biometry: ^1.0.3\n```\n\nRun:\n\n```bash\nflutter pub get\n```\n\n## Platform Setup\n\n### Android\n\nUpdate your `android/app/build.gradle`:\n\n```gradle\ndefaultConfig {\n  minSdkVersion 21\n}\n```\n\n### iOS\n\nUpdate `ios/Podfile`:\n\n```ruby\nplatform :ios, '13.0'\n```\n\nConfigure camera permissions in `Info.plist`:\n\n```xml\n\u003ckey\u003eNSCameraUsageDescription\u003c/key\u003e\n\u003cstring\u003eThis app requires camera access for biometric authentication.\u003c/string\u003e\n```\n\nEnable camera permissions via the `Podfile`:\n\n```ruby\npost_install do |installer|\n  installer.pods_project.targets.each do |target|\n    target.build_configurations.each do |config|\n      config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [\n        '$(inherited)',\n        'PERMISSION_CAMERA=1',\n      ]\n    end\n  end\nend\n```\n\n## Usage\n\n### Initializing Biometry\n\n```dart\nfinal biometry = await Biometry.initialize(\n  token: 'your-api-token',\n  fullName: 'John Doe',\n);\n```\n\n### Displaying the Verification Phrase\n\n```dart\nprint(biometry.phraseWords); // Example output: \"One Two Three Four Five\"\n```\n\n### Using the Scanner Widget\n\n```dart\nBiometryScannerWidget(\n  phrase: biometry.phraseWords,\n  onCapture: (videoFile) async {\n    final response = await biometry.processVideo(videoFile: videoFile);\n    print(response.body);\n  },\n);\n```\n\n**Note**: If both consent and storage consent have been given before calling `processVideo()`, the backend will automatically perform enrollment (both face and voice) during video processing. Otherwise, it performs authentication only. When automatic enrollment is triggered, the response will include the `x-auto-enroll` header to indicate that enrollment has started (enrollment is asynchronous).\n\n### Document Authentication\n\n```dart\nfinal response = await biometry.docAuth();\nprint(response.body);\n```\n\n### Consent Handling\n\n```dart\nfinal response = await biometry.allowConsent(consent: true);\nprint(response.body);\n```\n\n## Example Application\n\nA complete, functional example application is provided within the [`example/`](example/) directory of the package.\n\n## Security and Privacy\n\nBiometry adheres to strict security standards:\n- Authentication via secure API tokens.\n- Collection and secure transmission of detailed device information.\n- Session-specific unique identifiers for enhanced traceability.\n- No persistent storage or logging of biometric data within the package.\n\nFor further security guidance, refer to the [Biometry Developer Portal](https://developer.biometrysolutions.com/overview/).\n\n## Contributing\n\nContributions are welcome. Please open an issue or submit a pull request on the [GitHub repository](https://github.com/Namadgi/biometry-flutter/issues).\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## Further Information\n\n- [Biometry Homepage](https://biometrysolutions.com/)\n- [Developer Documentation](https://developer.biometrysolutions.com/overview/)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnamadgi%2Fbiometry-flutter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnamadgi%2Fbiometry-flutter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnamadgi%2Fbiometry-flutter/lists"}