{"id":31753394,"url":"https://github.com/root-app/react-native-camera","last_synced_at":"2025-10-09T17:46:24.066Z","repository":{"id":189038988,"uuid":"668330227","full_name":"Root-App/react-native-camera","owner":"Root-App","description":null,"archived":false,"fork":false,"pushed_at":"2023-10-21T03:33:58.000Z","size":5102,"stargazers_count":0,"open_issues_count":18,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2024-04-15T01:12:03.592Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","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/Root-App.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"docs/Contributing.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-07-19T14:48:13.000Z","updated_at":"2023-07-20T14:15:15.000Z","dependencies_parsed_at":"2023-08-18T01:28:14.542Z","dependency_job_id":null,"html_url":"https://github.com/Root-App/react-native-camera","commit_stats":null,"previous_names":["root-app/react-native-camera"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Root-App/react-native-camera","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Root-App%2Freact-native-camera","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Root-App%2Freact-native-camera/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Root-App%2Freact-native-camera/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Root-App%2Freact-native-camera/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Root-App","download_url":"https://codeload.github.com/Root-App/react-native-camera/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Root-App%2Freact-native-camera/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001828,"owners_count":26083197,"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-10-09T02:00:07.460Z","response_time":59,"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":[],"created_at":"2025-10-09T17:46:20.634Z","updated_at":"2025-10-09T17:46:24.060Z","avatar_url":"https://github.com/Root-App.png","language":"Java","funding_links":["https://opencollective.com/react-native-camera","https://tidelift.com/security"],"categories":[],"sub_categories":[],"readme":"# React Native Camera [![Backers on Open Collective](https://opencollective.com/react-native-camera/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/react-native-camera/sponsors/badge.svg)](#sponsors) [![npm version](https://badge.fury.io/js/react-native-camera.svg)](http://badge.fury.io/js/react-native-camera) [![npm downloads](https://img.shields.io/npm/dm/react-native-camera.svg)](https://www.npmjs.com/package/react-native-camera)\n\n### 🚧🚧 Looking for maintainers and backers 🚧🚧\n\nSee this [issue](https://github.com/react-native-community/react-native-camera/issues/3000)\n\nWe are looking for maintainers for this package, or to depreciate this in favor of [react-native-vision-camera](https://github.com/mrousavy/react-native-vision-camera) or [expo-camera](https://docs.expo.io/versions/latest/sdk/camera/), if nobody want to maintain this package.\n\n## Docs\nFollow our docs here [https://react-native-camera.github.io/react-native-camera/](https://react-native-camera.github.io/react-native-camera/)\n\nThe comprehensive camera module for React Native.\n\nSupports:\n\n- photographs.\n- videos\n- face detection (Android \u0026 iOS only)\n- barcode scanning\n- text recognition (optional installation for iOS using CocoaPods)\n\n### Example import\n\n```jsx\nimport { RNCamera, FaceDetector } from 'react-native-camera';\n```\n\n#### How to use master branch?\n\nWe recommend using the releases from npm, however if you need some features that are not published on npm yet you can install react-native-camera from git.\n\n**yarn**: `yarn add react-native-camera@git+https://git@github.com/react-native-community/react-native-camera.git`\n\n**npm**: `npm install --save react-native-camera@git+https://git@github.com/react-native-community/react-native-camera.git`\n\n### Contributing\n\n- Pull Requests are welcome, if you open a pull request we will do our best to get to it in a timely manner\n- Pull Request Reviews are even more welcome! we need help testing, reviewing, and updating open PRs\n- If you are interested in contributing more actively, please contact me (same username on Twitter, Facebook, etc.) Thanks!\n- We are now on [Open Collective](https://opencollective.com/react-native-camera#sponsor)! Contributions are appreciated and will be used to fund core contributors. [more details](#open-collective)\n- If you want to help us coding, join Expo slack https://slack.expo.io/, so we can chat over there. (#react-native-camera)\n\n##### Permissions\n\nTo use the camera,\n\n1) On Android you must ask for camera permission:\n\n```java\n  \u003cuses-permission android:name=\"android.permission.CAMERA\" /\u003e\n```\n\nTo enable `video recording` feature you have to add the following code to the `AndroidManifest.xml`:\n\n```java\n  \u003cuses-permission android:name=\"android.permission.RECORD_AUDIO\"/\u003e\n  \u003cuses-permission android:name=\"android.permission.READ_EXTERNAL_STORAGE\" /\u003e\n  \u003cuses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\" /\u003e\n```\n\n![5j2jduk](https://cloud.githubusercontent.com/assets/2302315/22190752/6bc6ccd0-e0da-11e6-8e2f-6f22a3567a57.gif)\n\n2) On iOS, you must update Info.plist with a usage description for camera\n\n```xml\n...\n\u003ckey\u003eNSCameraUsageDescription\u003c/key\u003e\n\u003cstring\u003eYour own description of the purpose\u003c/string\u003e\n...\n\t\n```\nFor more information on installation, please refer to [installation requirements](./docs/installation.md#requirements).\n\nFor general introduction, please take a look into this [RNCamera](./docs/RNCamera.md).\n\n## Security contact information\n\nTo report a security vulnerability, please use the\n\n[Tidelift security contact](https://tidelift.com/security).\n\nTidelift will coordinate the fix and disclosure.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froot-app%2Freact-native-camera","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froot-app%2Freact-native-camera","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froot-app%2Freact-native-camera/lists"}