{"id":21319454,"url":"https://github.com/zoom/videosdk-reactnative-quickstart","last_synced_at":"2025-07-12T04:31:51.709Z","repository":{"id":235535271,"uuid":"774880994","full_name":"zoom/videosdk-reactnative-quickstart","owner":"zoom","description":"This is a sample application that demonstrates how to use the Zoom Video SDK in a React Native application.","archived":false,"fork":false,"pushed_at":"2024-11-08T11:06:49.000Z","size":1179,"stargazers_count":6,"open_issues_count":2,"forks_count":4,"subscribers_count":9,"default_branch":"main","last_synced_at":"2024-11-08T12:19:25.627Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zoom.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-03-20T11:14:21.000Z","updated_at":"2024-11-08T11:06:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"a50884a5-f228-44f4-addf-c84edbd9f488","html_url":"https://github.com/zoom/videosdk-reactnative-quickstart","commit_stats":null,"previous_names":["zoom/videosdk-reactnative-quickstart"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoom%2Fvideosdk-reactnative-quickstart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoom%2Fvideosdk-reactnative-quickstart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoom%2Fvideosdk-reactnative-quickstart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoom%2Fvideosdk-reactnative-quickstart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zoom","download_url":"https://codeload.github.com/zoom/videosdk-reactnative-quickstart/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225795379,"owners_count":17525316,"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":[],"created_at":"2024-11-21T19:41:57.602Z","updated_at":"2025-07-12T04:31:51.692Z","avatar_url":"https://github.com/zoom.png","language":"TypeScript","readme":"# Zoom VideoSDK React Native Demo\n\nUse of this sample app is subject to our [Terms of Use](https://explore.zoom.us/en/video-sdk-terms/).\n\nThis is a sample application that demonstrates how to use the Zoom Video SDK in a React Native application. Built with [Expo](https://docs.expo.dev/).\n\n## Prerequisites\n\n- [Environment setup](https://reactnative.dev/docs/environment-setup) for React Native\n- Node (LTS)\n- [Bun](https://bun.sh/) (or a package manager of your choice)\n- A Zoom [Video SDK Account](https://developers.zoom.us/docs/video-sdk/get-credentials/)\n\n## Getting Started\n\n1. Clone the Repo\n\n```bash\ngit clone https://github.com/zoom/VideoSDK-ReactNative-Quickstart.git\n```\n\n2. Install the dependencies\n\n```bash\nbun install\n```\n\n3. Install cocoapods (iOS only)\n\n```bash\nbunx pod-install ## (or) cd ios \u0026\u0026 pod install\n```\n\n4. Add your Zoom Video SDK credentials\n\n- Open `config.ts` and replace `ZOOM_APP_KEY` and `ZOOM_APP_SECRET` with your Zoom Video SDK credentials.\n\n\u003e **Disclaimer**: It's not recommended to store your credentials in the source code. This is only for demonstration purposes for sake of simplicity. You should use a secure backend to generate the token and pass it to the client.\n\n5. Run the app\n\n```bash\nbunx expo run:ios\n# or\nbunx expo run:android\n```\n\n## How to setup in a fresh project\n\n1. Create a new project, we recommend using Expo to simplify the setup\n\n```bash\nbunx create-expo-app zoom-video-sdk --template # select Blank (Typescript)\n# or\nbunx react-native@latest init zoomRNCli --template react-native-template-typescript\n```\n\n2. Install the Zoom Video SDK\n\n```bash\nbunx expo add @zoom/react-native-videosdk\n```\n\n- For iOS run: `npx pod-install` to install the pods\n\n3. Add permissions for the camera and microphone\n\n- Add the following to your `app.json`.\n\n```json\n{\n  \"expo\": {\n    \"android\": {\n      \"permissions\": [\"CAMERA\", \"RECORD_AUDIO\"]\n    },\n    \"ios\": {\n      \"infoPlist\": {\n        \"NSCameraUsageDescription\": \"Text\",\n        \"NSMicrophoneUsageDescription\": \"Text\"\n      }\n    }\n  }\n}\n```\n\nIf you're not using Expo:\n\n- For iOS you'll have to add these to your `info.plist` manually.\n- For Android, you can request permissions at runtime using the `Permissions` module as done in `usePermission` in [utils/lib.tsx](https://link/) or add these to your `AndroidManifest` file.\n\n4. Wrap your app in the `ZoomVideoSdkProvider`\n\n```tsx\nfunction App() {\n  ...\n  return (\n    \u003cZoomVideoSdkProvider config={{....}}\u003e\n      \u003cYourApp\u003e\n    \u003c/ZoomVideoSdkProvider\u003e\n  );\n```\n\n5. Use the Zoom Video SDK\n\n```tsx\nfunction YourApp() {\n  const zoom = useZoom();\n  const handleJoin = async () =\u003e {\n     await zoom.joinSession({....});\n  }\n  ...\n```\n\n6. Scaffold the native code (Skip if not using Expo)\n\n```bash\nbunx expo prebuild\n```\n\n7. Run the app\n\n- Expo\n\n```bash\nbunx expo run:ios\n# or\nbunx expo run:android\n```\n\n- React Native\n\n```bash\nbun run android\n# or\nbun run ios\n```\n\n## Need help?\n\nIf you're looking for help, try [Developer Support](https://devsupport.zoom.us) or our [Developer Forum](https://devforum.zoom.us). Priority support is also available with [Premier Developer Support](https://explore.zoom.us/docs/en-us/developer-support-plans.html) plans.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzoom%2Fvideosdk-reactnative-quickstart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzoom%2Fvideosdk-reactnative-quickstart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzoom%2Fvideosdk-reactnative-quickstart/lists"}