Singular Device Mode Integration

Send events from RudderStack to Singular via device mode.

RudderStack lets you send your events to Singular via device mode using the mobile SDKs.

Add device mode integration

After you set up Singular as a destination in RudderStack, follow these steps to add it to your project, depending on your platform of integration.

To add Singular to your React Native app, follow these steps:

  1. Add the RudderStack-Singular module to your app by running the following command:
bash
npm install @rudderstack/rudder-integration-singular-react-native
// OR //
yarn add @rudderstack/rudder-integration-singular-react-native

  1. Open your project-level android/build.gradle file and add the following snippet:
groovy
repositories {
  maven {
    url "https://maven.singular.net/"
  }
}

  1. Import the above module and add it to your SDK initialization:
typescript
import rudderClient from "@rudderstack/rudder-sdk-react-native"
import singular from "@rudderstack/rudder-integration-singular-react-native"
const config = {
	dataPlaneUrl: <data_plane_url>,
	trackAppLifecycleEvents: true,
	withFactories: [singular],
}
rudderClient.setup(<write_key>, config)

Identify

For device mode integrations, the Singular SDK uses RudderStack’s identify method to map the user ID to their custom user ID. RudderStack uses Singular’s setCustomUserId API to forward the identified user ID to Singular.

A sample identify call for both the Android (Java) and iOS (Obj-C) SDKs is shown below:

objectivec
[[RSClient getInstance] identify:@"1hKOmRA4el9Zt1WSfVJIVo4GRlm"];

Track

The track call lets you capture any user actions and the properties associated with them. Each user action is considered to be an event.

Custom events

A custom track call lets you track custom events as they occur in your apps. RudderStack sends these calls to Singular where they are processed as custom post-install events and are made available in the relevant reports.

A sample custom track call for both the Android (Java) and iOS SDKs is shown below:

objectivec
[[RSClient getInstance] track:@"Product Reviewed" properties:@{
        @"product_id" : @"345676543",
        @"review_id" : @"123454387"
    }];

Track revenue

Singular supports tracking revenue events. It implements revenue tracking whenever an event containing the revenue property is sent (including a zero value). Optionally, you can also pass the currency field as an ISO code.

The default currency is set to USD.

A sample revenue track call is shown below:

objectivec
[[RSClient getInstance] track:@"Order Completed" properties:@{
        @"revenue" : @1251,
        @"currency" : @"INR"
    }];

Screen

The screen method allows you to record whenever a user sees the mobile screen, along with any associated optional properties. This call is similar to the page call for the web applications but exclusive to your mobile device.

RudderStack sends the screen event to Singular as a custom event.

A sample screen call for both the Android (Java) and iOS (Obj-C) SDKs is shown below:

objectivec
[[RSClient sharedInstance] screen:@"Home" properties:@{
    @"category" : @"launcher"
}];

In the above snippet, RudderStack captures all information related to the viewed screen, along with any additional info about the screen.

Reset

The reset method resets the current user’s identity and creates a new anonymous session. It should be called when a user logs out.

RudderStack calls Singular’s unsetCustomUserId method to reset a user’s identity.

A sample reset call for both the Android (Java) and iOS (Obj-C) SDKs is shown below:

objectivec
[[RSClient getInstance] reset];

Implement SKAdNetwork (SKAN) support

Add the following code before the initialization of the iOS SDK to give the control to Singular for your SKAdNetwork integration:

objectivec
[RudderSingularIntegration setSKANOptions:YES
        isManualSkanConversionManagementMode:YES
withWaitForTrackingAuthorizationWithTimeoutInterval:@0
        withConversionValueUpdatedHandler:^(NSInteger conversionValue){
    // Receive a callback whenever the Conversion Value is updated
    NSLog(@"SKAN handler %ld",conversionValue);
}];

For more details, see the iOS SDK: Adding SKAdNetwork Support section of the Singular documentation.

Questions? Let's figure it out together.

Join the RudderStack Slack community to connect with other users, customers, and the RudderStack team — or reach out for direct support.