{"id":4440,"url":"https://github.com/negativetwelve/react-native-ux-cam","last_synced_at":"2025-07-31T09:33:31.407Z","repository":{"id":12335210,"uuid":"71629372","full_name":"negativetwelve/react-native-ux-cam","owner":"negativetwelve","description":"React Native wrapper for uxcam.com","archived":false,"fork":false,"pushed_at":"2023-01-26T11:23:31.000Z","size":74118,"stargazers_count":53,"open_issues_count":7,"forks_count":36,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-18T15:04:42.720Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Objective-C","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/negativetwelve.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}},"created_at":"2016-10-22T09:25:35.000Z","updated_at":"2024-10-20T09:43:12.000Z","dependencies_parsed_at":"2023-02-14T16:46:06.731Z","dependency_job_id":null,"html_url":"https://github.com/negativetwelve/react-native-ux-cam","commit_stats":null,"previous_names":[],"tags_count":52,"template":false,"template_full_name":null,"purl":"pkg:github/negativetwelve/react-native-ux-cam","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/negativetwelve%2Freact-native-ux-cam","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/negativetwelve%2Freact-native-ux-cam/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/negativetwelve%2Freact-native-ux-cam/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/negativetwelve%2Freact-native-ux-cam/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/negativetwelve","download_url":"https://codeload.github.com/negativetwelve/react-native-ux-cam/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/negativetwelve%2Freact-native-ux-cam/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268017320,"owners_count":24181666,"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-07-31T02:00:08.723Z","response_time":66,"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":"2024-01-05T20:17:12.051Z","updated_at":"2025-07-31T09:33:31.365Z","avatar_url":"https://github.com/negativetwelve.png","language":"Objective-C","funding_links":[],"categories":["Components"],"sub_categories":["Analytics"],"readme":"# react-native-ux-cam\n\nDeprecation of this repo\n\nAs of version 5.1.15, published 5 March 2020, we are moving to https://github.com/uxcam/react-native-ux-cam for all future updates.\n\nIf you have issues, feature requests, pull requests etc. please put them in there.\n\nThanks!\nRichard @ UXCam\n\n\n## Installation\n`$yarn add file:/path-to-the-uxcam-react-wrapper`\n\n`$react-native link react-native-ux-cam`\n\n\nFor react-native version 0.60 if using iOS you then need to:\n\n`cd ios`\n\nEdit the `Podfile` first line to be `platform :ios, '10.0'` rather than `platform :ios, '9.0'` then run the following to install the CocoaPods:\n\n`pod update \u0026\u0026 cd ..`\n\n## Usage\n```javascript\nimport RNUxcam from 'react-native-ux-cam';\nRNUxcam.optIntoSchematicRecordings(); // Add this line to enable iOS screen recordings\nRNUxcam.startWithKey('YOUR API KEY');\n```\n\n# For testing example app\n## Setup\n`yarn install`\n\n`yarn add react-native-ux-cam`\n### or if adding locally\n`yarn add file:/path-to-uxcam-plugin`\n\n## Add the key from UXCam to App.js file\n`RNUxcam.startWithKey('YOUR UXCAM API KEY GOES HERE');`\n\n## Running\n\n### Android\n`react-native run-android`\n\n### iOS\n`cd iOS`\nEdit the `Podfile` first line to be `platform :ios, '10.0'` rather than `platform :ios, '9.0'` then run the following to install the CocoaPods:\n\n`pod update \u0026\u0026 cd ..`\n\n`react-native run-ios`\n\n# Manual Installation\n## Setup\n\n```bash\n# Yarn\nyarn add react-native-ux-cam\n\n# NPM\nnpm install --save react-native-ux-cam\n```\n\n### iOS with react-native and Cocoapods\n\nAdd the following to your Podfile:\n\n```ruby\npod 'RNUxcam', :path =\u003e '../node_modules/react-native-ux-cam'\n```\nand edit the minimum version of iOS to be \u003e=10.0\n\nThen run:\n\n```bash\npod install\n```\n\n### Android\n\n1. Go to `android/settings.gradle`\nadd `include ':react-native-ux-cam'`\nand on the following line add `project(':react-native-ux-cam').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-ux-cam/android')` \n\n2. Go to `android/app/build.gradle`\nadd `compile project(':react-native-ux-cam')` under dependencies\n\n3. Go to `android/app/src/main/java/com/terravion/dbug/MainApplication.java`\nadd `import com.rnuxcam.rnuxcam.UXCamPackage;`\n\n4. Add the following to your file `android/app/build.gradle` (or add the maven url to your existing repositories section):\n\n```gradle\nallprojects {\n    // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm\n    maven { url \"$rootDir/../node_modules/react-native/android\" }\n    maven { url \"http://sdk.uxcam.com/android/\" }\n}\n```\n\n5. And add this to your file `android/app/src/main/AndroidManifest.xml`, inside your `\u003capplication\u003e` tag:\n\n```xml\n\u003cservice android:name=\"com.uxcam.service.HttpPostService\"/\u003e\n```\n## Usage\n\n```js\n// Import UXCam.\nimport UXCam from 'react-native-ux-cam';\n\n// Add this line to enable iOS screen recordings\nUXCam.optIntoSchematicRecordings(); \n\n// Initialize using your app key.\nUXCam.startWithKey(key);\n```\n\n## History\nThis is an updated way of integrating the UXCam SDK react-native following on from the original work by Mark Miyashita (https://github.com/negativetwelve) without whom this would have all been much harder!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnegativetwelve%2Freact-native-ux-cam","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnegativetwelve%2Freact-native-ux-cam","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnegativetwelve%2Freact-native-ux-cam/lists"}