Adobe Analytics mobile device mode

Send events to Adobe Analytics via the RudderStack mobile device mode.

This document covers the necessary settings and configurations to send events to Adobe Analytics via your mobile device mode.

success
Mobile device mode refers to using the Android or iOS SDK to send your events directly to Adobe Analytics.

To configure Adobe Analytics via the mobile device mode, follow these steps:

  1. Click the Manage Apps option on the left nav bar on your Adobe Mobile Services dashboard.
  2. Add your app or click an existing app and configure the required settings under the Manage App Settings tab:
  1. Click the Config File option present at the bottom of the same page:

Android

For Android, place the ADBMobileConfig.json file inside your app under src/main/assets/.

Then, follow the instructions in the Adobe documentation to create the report suite.

iOS

For iOS, drag and drop the ADBMobileConfig.json under the Pods section in the Project Navigatorand verify the following:

  • The Copy items if needed checkbox is selected.
  • Create groups is selected.
  • None of the checkboxes in the Add to targets section is selected.

In File Inspector, add the JSON file to the AdobeMobileSDK target. Then, follow the instructions in the Adobe documentation to create the report suite.

Adding device mode integration

Dashboard settings to send events via mobile device mode:

Configure the following settings in the RudderStack dashboard to use the mobile device mode:

  • Set the Heartbeat Tracking Server URL and it should be in the format of [your_namespace].hb.omtrdc.net.
  • Toggle Check for Heartbeat calls to be made over HTTPS to enable or disable the SSL mode.
  • Enter Prefix to add before all contextData property to append a prefix before a custom property.
  • Select Product Identifier to look for Product Id. By default, it is set to Product Name.

Sending events

Map all events defined in the Adobe Mobile Services dashboard in the Map Rudder Events to Adobe Custom Events dashboard setting.

Sending custom properties

Map all properties defined at the Adobe Mobile Services dashboard in the Map Rudder Context data to Adobe Context Data dashboard setting.

warning
For mobile device mode, RudderStack currently does not support the Initialize Heartbeat and Heartbeat Playhead Update video events.

Identify

When you make an identify call, RudderStack sets the Adobe visitorId to the value of the user’s RudderStack userId.

A sample identify call looks like the following:

Track

When you make a track call, RudderStack sends an Adobe trackAction event and passes your event name and any associated properties mapped to Adobe as context data values.

A sample track call is as shown:

Screen

When you make a screen call, RudderStack sends an Adobe trackState event and passes the screen name along with any associated properties mapped to Adobe as context data values.

A sample screen call looks like the following:

Reset

Calling the reset API sets the user’s Adobe visitorId to null.

info
The default value of Adobe’s visitorId is null until you explicitly set it (by calling identify).

A sample reset call is as shown:

Flush

Calling the flush method immediately sends all locally queued events to Adobe.

A sample flush call is as follows:

MainApplication.rudderClient.flush()
info
RudderStack supports the flush call only in Android.

Questions? Contact us by email or on Slack