UXCam Session Recording Integration for Mobile App

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
UXCam Session Recording Integration for Mobile App
Simple
from 1 business day to 3 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1052
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

UXCam Session Recording Integration for Mobile Apps

UXCam specializes in mobile UX research — unlike Sentry or Datadog, sessions here are recorded with focus on understanding user behavior rather than error diagnostics. Gesture heatmaps, on-screen focus zones, Screen Flow reports — these are tools for UX and product teams, not reliability engineers.

Installation

iOS (Swift Package Manager):

// Package.swift
.package(url: "https://github.com/uxcam/ios-sdk", from: "3.6.0")
import UXCam

// AppDelegate
func application(_ application: UIApplication,
                 didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
    let config = UXCamConfiguration(appKey: "YOUR_APP_KEY")
    config.enableAdvancedGestureRecognizers = true
    UXCam.startWithConfiguration(config)
    return true
}

Android:

// build.gradle
implementation("com.uxcam:uxcam:3.+")
// Application.onCreate()
val config = UXCamConfiguration.Builder("YOUR_APP_KEY")
    .enableAdvancedGestureRecognizers(true)
    .build()
UXCam.startWithConfiguration(config)

Masking Private Data

UXCam by default masks fields with isSecureTextEntry (iOS) and password type fields (Android). For custom Views with sensitive content:

// iOS — mask specific UIView
UXCam.occlude(view: cardNumberView, hideGestures: true)

// Mask entire screen
UXCam.occlude(view: self.view, hideGestures: false)
// Android — mask View
UXCam.occludeSensitiveView(binding.cardNumberField)

// Mask via XML
android:tag="uxcam_unmask" // exclude from masking
android:tag="uxcam_mask"   // force masking

For payment screens, recommend hiding the entire screen via UXCam.tagScreenName("Payment", isOccluded: true) — simpler than masking each element.

Screen Tagging

UXCam auto-detects screen names from ViewController/Activity class names. In practice, names like VC_3_Step2Fragment are unreadable in dashboards. Add explicit tags:

// iOS — screen tag
override func viewDidAppear(_ animated: Bool) {
    super.viewDidAppear(animated)
    UXCam.tagScreenName("Product Detail")
}
// Android — in Fragment.onResume()
override fun onResume() {
    super.onResume()
    UXCam.tagScreenName("Product Detail")
}

Custom Events and User Properties

// Event
UXCam.logEvent("add_to_cart", withProperties: [
    "product_id": product.id,
    "category": product.category,
    "price": product.price
])

// User properties (for dashboard segmentation)
UXCam.setUserProperty("plan", value: "premium")
UXCam.setUserProperty("registration_cohort", value: "2024-Q1")

User properties let you filter recordings in the UXCam dashboard by segment: view sessions only for premium users or new cohorts.

Sampling and Recording Control

// Record only 30% of sessions
let config = UXCamConfiguration(appKey: "YOUR_APP_KEY")
config.userAppKey = "YOUR_APP_KEY"

// Start/stop manually
UXCam.stopSessionAndUploadData() // finalize and send current session

// Don't record in debug build
if !isDebugBuild {
    UXCam.startWithConfiguration(config)
}

For high-DAU apps, consider sampling: recording 100% of sessions is expensive for UXCam storage. Good strategy — 10% random + 100% error sessions or specific events:

// Force record session on critical event
UXCam.allowShortBreakForAnotherApp(true) // don't end session on app switch
Analytics.shared.onCriticalError { error in
    UXCam.logEvent("critical_error", withProperties: ["error": error.localizedDescription])
    // Session will be marked and available in dashboard
}

What We Do

  • Connect SDK via SPM (iOS) or Gradle (Android)
  • Configure masking of sensitive screens and Views
  • Add tagScreenName for readable names in dashboard
  • Add key events and user properties for segmentation
  • Configure sampling based on traffic volume

Timeline

Basic integration with masking and tagging: 1–2 days. Pricing is calculated individually.