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-uxcam

Step 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

  1. Build and run your app
  2. Navigate through a few screens
  3. Send the app to background
  4. Check your UXCam Dashboard - your session should appear within 30 seconds

Next Steps

You're recording sessions! Now customize your integration:


What's Next? ...