Rudder-Adjust 1.0.0

Rudder-Adjust 1.0.0

Maintained by RudderStack.



 
Depends on:
Rudder>= 0
Adjust>= 0
 

  • By
  • RudderStack

What is Rudder?

Short answer: Rudder is an open-source Segment alternative written in Go, built for the enterprise. .

Long answer: Rudder is a platform for collecting, storing and routing customer event data to dozens of tools. Rudder is open-source, can run in your cloud environment (AWS, GCP, Azure or even your data-centre) and provides a powerful transformation framework to process your event data on the fly.

Released under Apache License 2.0

Getting Started with Adjust Integration of iOS SDK

  1. Add Adjust as a destination in the Dashboard and define apiToken and eventMapping

  2. Rudder-Adjust is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'Rudder-Adjust'

Initialize RudderClient

Put this code in your AppDelegate.m file under the method didFinishLaunchingWithOptions

RSConfigBuilder *builder = [[RSConfigBuilder alloc] init];
[builder withDataPlaneUrl:<YOUR_DATA_PLANE_URL>];
[builder withFactory:[RudderAdjustFactory instance]];
[RSClient getInstance:<YOUR_WRITE_KEY> config:[builder build]];

Send Events

Follow the steps from Rudder iOS SDK