Skip to content

amplitude/AmplitudeSessionReplay-iOS

Repository files navigation


⚠️ Pre-release (ALPHA) ⚠️

AmplitudeSessionReplay-iOS

This is Amplitude's latest version of the Session Replay SDK for iOS.

Integrations

AmplitudeSessionReplay integrates via plugin to your core analytics library.

Instructions

To Start, import the library via your preferred package manager.

SPM

Use package https://github.com/amplitude/AmplitudeSessionReplay-iOS.git Be careful to only add a single library to your target, based on your core analytics library as detailed below.

Cocoapods

Add pod 'SUB_SPEC', :git => 'https://github.com/amplitude/AmplitudeSessionReplay-iOS.git' to your Podfile, replacing SUB_SPEC with the appropriate subspec for your core analytics library as detailed below.

Amplitude-Swift (Preferred)

  1. Use target/subspec: AmplitudeSwiftSessionReplayPlugin

  2. Import the framework:

import AmplitudeSwiftSessionReplayPlugin
  1. Add the plugin to your Amplitude instance:
amplitude.add(plugin: AmplitudeSwiftSessionReplayPlugin())

Developer docs

Amplitude-iOS

  1. Use target/subspec: AmplitudeiOSSessionReplayMiddleware

  2. Import the framework:

import AmplitudeiOSSessionReplayMiddleware
  1. Add the plugin to your Amplitude instance:
amplitude.addEventMiddleware(AmplitudeiOSSessionReplayMiddleware())

Developer docs

Segment (Analytics-Swift, Amplitude (Actions) Destination, SegmentAmplitude Plugin)

  1. Use target/subspec: AmplitudeSegmentSessionReplayPlugin

  2. Import the framework:

import AmplitudeSegmentSessionReplayPlugin
  1. Add the plugin to your Amplitude instance, after adding the AmplitudeSession plugin:
let analytics = Analytics(configuration: config)
// AmplitudeSession MUST be first so AmplitudeSegmentSessionReplayPlugin can pick up the sessionId
analytics.add(plugin: AmplitudeSession())
analytics.add(plugin: AmplitudeSegmentSessionReplayPlugin(amplitudeApiKey: "AMPLITUDE_API_KEY"))

Developer docs

Standalone / Third Party

  1. Use target/subspec: AmplitudeSessionReplay

  2. Import the framework:

import AmplitudeSessionReplay
  1. Initialize AmplitudeSessionReplay, and make sure to retain a copy of the instance:
let sessionReplay = SessionReplay(apiKey: "API_KEY")
  1. Set deviceId and sessionId on the SessionReplay instance, equivalent to that set on your analytics client.
sessionReplay.deviceId = deviceId
sessionReplay.sessionId = sessionId
  1. Add additionalEventProperties as event properties to the events you pass to Amplitude.
var eventProperties = event.eventProperties ?? [:]
eventProperties.merge(sessionReplay.additionalEventProperties) { (current, _) in current }
event.eventProperties = eventProperties
  1. Call start:
sessionReplay.start()

Developer docs

Need Help?

If you have any issues using our SDK, feel free to create a GitHub issue or submit a request on Amplitude Help.