Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 1.08 KB

C1X.MD

File metadata and controls

47 lines (33 loc) · 1.08 KB

Piano Composer integration with Cxense for iOS (C1X)

Version Platform License

Important: Don't send Cxense PV events from screens with Composer

Installation

Add the following lines to your Podfile.

use_frameworks!

pod 'PianoC1X', '~>2.4.0'

Import

import PianoC1X

Configuration

let configuration = PianoC1XConfiguration(siteId: "<SITE_ID>")

Enable integration

PianoC1X.enable(configuration: configuration)

Usage

If integration is enabled, Composer will automatically send PV event to Cxense after execution.

Important: You have to fill in url parameter for Composer:

PianoComposer(aid: ..., endpoint: ...)
    ...
    .url("https://example.com")
    ...