Create Your Account

  1. Sign up and create an account
  2. Complete the onboarding process
  3. Create your first app to get your SDK token

Basic Setup

Install the SDK

Using Swift Package Manager:

// In Xcode:
File > Swift Packages > Add Package Dependency
// Add the SDK repository URL: https://github.com/advato/referrals-sdk-ios

Initialize the SDK

let entryPoint = AdvatoEntryPoint(
    accessToken: "your_access_token", // Find this in Dashboard > Info about App
    userId: "unique_user_id"         // Your app's user identifier
)
Advato.shared.start(entryPoint: entryPoint)