Quick Start - Cordova
Get UXCam running in your Cordova app in 5 minutes
Cordova Quick Start
Get session recording working in your Cordova app in under 5 minutes.
Prerequisites
- Apache Cordova CLI
- iOS deployment target 12.0+ / Android minSdkVersion 21+
- A UXCam account with an app key
Step 1: Add the Plugin
cordova plugin add cordova-uxcamStep 2: Initialize UXCam
Add this to your deviceready handler:
document.addEventListener('deviceready', function() {
UXCam.optIntoVideoRecordings();
UXCam.startWithConfiguration({
userAppKey: 'YOUR_APP_KEY'
});
}, false);Step 3: Verify It Works
- Build and run your app
- Navigate through a few screens
- Send the app to background
- Check your UXCam Dashboard - your session should appear within 30 seconds
Next Steps
You're recording sessions! Now customize your integration:
Updated about 12 hours ago
What's Next? ...
