React Native wrapper for uxcam.com.
npm install react-native-ux-cam$yarn add file:/path-to-the-uxcam-react-wrapperFor iOS, you will need to update pod as well:
cd ios && pod update && cd ..
>Starting from 5.3.0, we no longer support project with react native version <0.60.0. Use manual linking for older version to add UXCam to your project.
>iOS 10 is the lowest version supported for recording sessions, which matches the default minimum version for new React Native projects.
javascript
import RNUxcam from 'react-native-ux-cam';
RNUxcam.optIntoSchematicRecordings(); // Add this line to enable iOS screen recordings
const configuration = {
userAppKey: 'YOUR API KEY',
/*
disable advanced gestures if you're having issues with
swipe gestures and touches during app interaction
*/
// enableAdvancedGestureRecognition: false
}
RNUxcam.startWithConfiguration(configuration);
`
For testing example app
Setup
yarn installyarn add react-native-ux-cam
$3
yarn add file:/path-to-uxcam-pluginAdd the key from UXCam to App.js file
Running
react-native run-androidreact-native run-ios`