Remote Command: Usabilla
Tealium remote command integration for Usabilla on Android and Swift/iOS.
Requirements
- Usabilla app ID and form ID
- One of these mobile libraries:
- Tealium for Android-Kotlin (1.0.0+)
- Tealium for Android-Java (5.9.0+ for Usabilla 1.0.0+ or <5.9.0 for previous versions)
- Tealium for iOS-Swift
- One of these remote command integrations:
- Usabilla Remote Command JSON File (Requires Android-Kotlin 1.0.0+ or iOS-Swift 2.1.0+)
- Usabilla Remote Command tag in Tealium iQ Tag Management
How It Works
The Usabilla integration uses three items:
- The Usabilla native SDK
- The remote commands module that wraps the Usabilla methods
- Either the JSON configuration file or Remote Command tag that translates event tracking into native Usabilla calls
Adding the Usabilla remote command module to your app automatically installs and builds the required Usabilla libraries. If you are using a dependency manager installation, there is no need to install the Usabilla SDK separately.
There are two remote command options: A JSON configuration file, or using iQ Tag Management to configure the mappings. A JSON configuration file is the recommended option for your vendor integration, hosted either remotely or locally within your app. If using iQ Tag Management, add the Remote Command tag for the vendor integration. Learn more about vendor integrations.
Install
Dependency Manager
- In your Xcode project, select File > Add Packages… > Add Package Dependency.
- Enter the repository URL:
https://github.com/tealium/tealium-ios-usabilla-remote-command. - Configure the version rules. Typically,
Up to next majoris recommended. If the currentTealiumUsabillaversion does not appear in the list, then reset your Swift package cache. - Select the
TealiumUsabillamodule to install, and select the app target you want the module to be installed in.
If your project has more than one app target and needs TealiumUsabilla module in more app targets, you have to manually add them in the Frameworks, Libraries, and Embedded Content section.
To install TealiumUsabilla in additional app targets:
- Select your Xcode project in the Project Navigator.
- In your Xcode project, select the app target under the TARGETS section.
- Navigate to General > Frameworks, Libraries & Embedded Content and select the
TealiumUsabillamodule to add it to your app target.
To add additional modules from the Tealium Swift library, follow the Swift Package Manager instructions.
-
Remove
tealium-swiftandpod "Usabilla"if they already exist your Podfile. The dependency fortealium-swiftis already included in theTealiumUsabillaframework. -
Add the following dependency to your Podfile:
pod "TealiumUsabilla"The
TealiumUsabillapod includes the followingTealiumSwiftdependencies:'tealium-swift/Core' 'tealium-swift/TealiumDelegate' 'tealium-swift/TealiumRemoteCommands' 'tealium-swift/TealiumTagManagement' -
Import the modules
TealiumSwiftandTealiumUsabillain yourTealiumHelperfile, and any other files that access theTealiumclass or the Usabilla remote command.
-
Remove
tealium-swiftfrom your Cartfile. The dependency fortealium-swiftis already included in theTealiumUsabillaframework. -
Remove the following line if it exists in your Cartfile:
github "usabilla/usabilla-u4a-ios-swift-sdk" -
Add the following dependency to your Cartfile:
github "tealium/tealium-ios-usabilla-remote-command"
Tealium for Swift SDK (version 1.6.5+) requires the TealiumDelegate module to be included with your installation.
-
Install Tealium for Android (Kotlin) or Tealium for Android (Java) and add the Tealium Maven URL to your project’s top-level
build.gradlefile, if you haven’t done so already.allprojects { repositories { mavenCentral() maven { url "https://maven.tealiumiq.com/android/releases/" } } } -
Import the Tealium-Usabilla remote commands by adding the following dependency in your app project’s
build.gradlefile:dependencies { implementation 'com.tealium.remotecommands:usabilla:1.0.0' }
Manual Installation
The manual installation for Usabilla remote commands requires the Tealium for Swift library to be installed. To install the Usabilla remote commands for your iOS project:
-
Install the Usabilla SDK, if you haven’t already done so.
-
Clone the Tealium iOS Usabilla remote command repo and drag the files within the
Sourcesfolder into your project. -
Set the
remoteAPIEnabledconfiguration flag totrue.
The manual installation for Usabilla remote commands requires Tealium for Android (Kotlin) or Tealium for Android (Java) to be installed.
To install the Branch remote commands for your Android project:
-
Add
flatDirto your project rootbuild.gradlefile:allprojects { repositories { mavenCentral() flatDir { dirs 'libs' } } } -
Add
tealium-usabilla.aarto<PROJECT_ROOT>/<MODULE>/libs. -
Add the Tealium library dependency to your
build.gradlefile:dependencies { implementation(name:'tealium-usabilla', ext:'aar') }
Initialize
For all Tealium libraries, you need to register the Usabilla remote command when you initialize.
Initialize remote commands with a JSON configuration file or the Remote Command tag for Tealium’s iOS (Swift) library:
var tealium : Tealium?
let config = TealiumConfig(account: "ACCOUNT",
profile: "PROFILE",
environment: "ENVIRONMENT",
dataSource: "DATASOURCE")
config.dispatchers = [Dispatchers.TagManagement, Dispatchers.RemoteCommands]
config.remoteAPIEnabled = true // Required to use Remote Commands
tealium = Tealium(config: config) { _ in
guard let remoteCommands = self.tealium?.remoteCommands else {
return
}
// Webview Tag
let usabilla = UsabillaRemoteCommand()
// Local JSON
//let usabilla = UsabillaRemoteCommand(type: .local(file: "usabilla"))
// Remote JSON
//let usabilla = UsabillaRemoteCommand(type: .remote(url: "https://some.domain.com/usabilla.json"))
remoteCommands.add(usabilla)
}
Initialize remote commands with a JSON configuration file or the Remote Command tag for Tealium’s Android (Kotlin) library:
val config = TealiumConfig(application,
"ACCOUNT",
"PROFILE",
Environment.DEV,
dispatchers = mutableSetOf(Dispatchers.RemoteCommands, Dispatchers.TagManagement));
val usabilla = UsabillaRemoteCommand(TEALIUM_MAIN, config);
var tealium = Tealium.create(TEALIUM_MAIN, config) {
// Webview Tag
remoteCommands?.add(usabilla);
// Local JSON
//remoteCommands?.add(usabilla, filename = "usabilla.json");
// Remote JSON
//remoteCommands?.add(usabilla, remoteUrl = "https://some.domain.com/usabilla.json");
}
Additional (optional) initialization parameters are available for the Usabilla SDK:
usabillaHttpClient = null
Overrides theHttpClientobject, which gives the possibility to inject a custom client to handle all the connections performed by the SDK. Learn more about the custom HTTP client.usabillaReadyCallback = null
Overrides theUsabillaReadyCallbackobject, which is a callback used to communicate when the initialization process ends.autoFragmentManager = false
Disables passive feedback (enabled by default). Passive feedback requires Android’sFragmentManagerto be kept up-to-date and monitored usingandroid.app.Application.ActivityLifecycleCallbacks.autoFeedbackHandler = false
Disables handling of event tracking for passive and campaign feedback forms as well as auto-removing forms that have been submitted or dismissed (enabled by default). Twoandroid.content.BroadcastReceivers are registered to listen for Usabilla events that handle both passive and campaign feedback form closures.
The following example shows usage of the optional parameters:
val usabilla = UsabillaRemoteCommand(TEALIUM_MAIN, config,
usabillaHttpClient = null,
usabillaReadyCallback = null,
autoFragmentManager = false,
autoFeedbackHandler = false);
The JSON Remote Command file feature for Android is only available in the Kotlin SDK. Initialize the Remote Command tag for Tealium’s Android (Java) library:
Tealium.Config config = Tealium.Config.create(application, "ACCOUNT", "PROFILE", "ENVIRONMENT");
Tealium teal = Tealium.createInstance(TEALIUM_MAIN, config);
RemoteCommand usabilla = new UsabillaRemoteCommand(TEALIUM_MAIN, config);
teal.addRemoteCommand(usabilla);
Additional (optional) initialization parameters are available for the Usabilla SDK:
usabillaHttpClient = null
Overrides theHttpClientobject, which gives the possibility to inject a custom client to handle all the connections performed by the SDK. Learn more about the custom HTTP client.usabillaReadyCallback = null
Overrides theUsabillaReadyCallbackobject, which is a callback used to communicate when the initialization process ends.autoFragmentManager = false
Disables passive feedback (enabled by default). Passive feedback requires Android’sFragmentManagerto be kept up-to-date and monitored usingandroid.app.Application.ActivityLifecycleCallbacks.autoFeedbackHandler = false
Disables handling of event tracking for passive and campaign feedback forms as well as auto-removing forms that have been submitted or dismissed (enabled by default). Twoandroid.content.BroadcastReceivers are registered to listen for Usabilla events that handle both passive and campaign feedback form closures.
The following example shows usage of the optional parameters:
RemoteCommand usabilla = new UsabillaRemoteCommand(TEALIUM_MAIN, config,
usabillaHttpClient = null,
usabillaReadyCallback = null,
autoFragmentManager = false,
autoFeedbackHandler = false);
JSON Template
If you are configuring remote commands using a JSON configuration file, refer to the following template to get started. The template includes common mappings used in a standard e-commerce installation. Edit the mappings as needed.
{
"config": {
"appId": "YOUR_APP_ID",
"debugEnabled": true
},
"mappings": {
"event_name": "event",
"display_campaigns": "canDisplayCampaigns",
"dismiss_automatically": "dismissAutomatically",
"form_id": "formId",
"form_ids": "formIds",
"customer_first_name": "custom.customer_first_name"
},
"commands": {
"launch": "initialize",
"display_campaigns": "candisplaycampaigns",
"dismiss": "dismissautomatically",
"button_click": "sendevent",
"load_form": "loadfeedbackform",
"set_variables": "setcustomvariable",
"reset": "resetcampaigndata"
}
}
Track
Events are tracked automatically for successful and unsuccessful form loads, as well as both passive and campaign feedback forms.
Supported Methods
We map a command to each Usabilla method or property. To trigger a Usabilla method or property, pass the corresponding command in the specified format.
| Remote Command | Usabilla Method/Property |
|---|---|
initialize |
initialize() |
sendevent |
sendEvent() |
debugenabled |
debugEnabled |
displaycampaigns |
canDisplayCampaigns |
loadfeedbackform |
loadFeedbackForm() |
preloadfeedbackforms |
preloadFeedbackForms() |
removecachedforms |
removeCachedForms() |
dismissautomatically |
dismissAutomatically |
setcustomvariable |
customVariables |
resetcampaigndata |
resetCampaignData() |
Since the Usabilla SDK is integrated with the Tealium SDK, you may trigger any native Usabilla functionality given the corresponding tag configuration.
SDK Setup
Initialize
The Usabilla SDK is initialized automatically upon launch. The Usabilla API key is set in the tag configuration.
| Remote Command | Usabilla Method |
|---|---|
initialize |
initialize() |
Usabilla Developer Guide: Initial SDK Setup
Debug
| Remote Command | Usabilla Property |
|---|---|
debugenabled |
debugEnabled |
| Parameter | Type |
|---|---|
debugEnabled (required) |
Bool |
Usabilla Developer Guide: Initial SDK Setup
Campaign Toggling
| Remote Command | Usabilla Property |
|---|---|
displaycampaigns |
canDisplayCampaigns |
| Parameter | Type |
|---|---|
canDisplayCampaigns (required) |
Bool |
Usabilla Developer Guide: Campaign Toggling
Campaign toggling is not available for Android
Targeting Options
Send Events
| Remote Command | Usabilla Method |
|---|---|
sendevent |
sendEvent() |
| Parameter | Type |
|---|---|
event (required) |
String |
Usabilla Developer Guide: Targeting Options
Set Custom Variables
| Remote Command | Usabilla Property |
|---|---|
setcustomvariable |
customVariables |
| Parameter | Type |
|---|---|
custom.### (required) |
String |
Usabilla Developer Guide: Set Custom Variables
Forms
Load Feedback Form
| Remote Command | Usabilla Method |
|---|---|
loadfeedbackform |
loadFeedbackForm |
| Parameter | Type | Example |
|---|---|---|
formId (required) |
String | |
fragmentId (Android only) |
Integer | R.id.activity_main |
Usabilla Developer Guide: Load Feedback Form
Preload Feedback Forms
| Remote Command | Usabilla Method |
|---|---|
preloadfeedbackforms |
preloadFeedbackForms |
| Parameter | Type |
|---|---|
formIds (required) |
[String] |
Usabilla Developer Guide: Preload Feedback Forms
Remove Cached Forms
| Remote Command | Usabilla Method |
|---|---|
removecachedforms |
removeCachedForms |
Usabilla Developer Guide: Remove Cached Forms
Dismiss Automatically
| Remote Command | Usabilla Property |
|---|---|
dismissautomatically |
dismissAutomatically |
| Parameter | Type |
|---|---|
dismissAutomatically (required) |
Bool |
Usabilla Developer Guide: Manual Dismiss
Reset
| Remote Command | Usabilla Property |
|---|---|
resetcampaigndata |
resetCampaignData |
Usabilla Developer Guide: Resetting All Campaigns
This page was last updated: February 8, 2024