Integrate the Relay SDK

Integrate the Relay SDK into your application

Prerequisites

Get Started

Integrate the iOS SDK

To use the Relay SDK in an iOS app, you need to install the SudoDIRelay package via Swift Package Manager

Open your project settings in XCode, and go to the Package Dependencies tab. Click on the + sign to add a dependency.

Enter the repository URL https://github.com/sudoplatform/sudo-di-relay-ios in the top right search box and select the sudo-di-relay-ios repository.

Select the required version and Add Package.

Sudo Platform SDKs conform to semantic versioning so in most cases you will leave the Dependency Rule as Up to Next Major Version to receive regular updates without introducing any breaking changes.

This will resolve the local package dependency and install the latest version of the Relay SDK.

In order to instantiate a Relay client, make sure you have followed instructions for Getting Started, User SDK and Sudo Profiles SDK (see Prerequisites above).

To instantiate the relay client in your application, add the following:

import SudoDIRelay

let userClient = // ... see "Users" docs
let relayClient = try DefaultSudoDIRelayClient(
    sudoUserClient: sudoUserClient
)

Integrate the Android SDK

The Android SDK is open source and compatible with Android 6 (API level 23) and above.

Add this line to the dependencies section of the app module build.gradle and synchronize your project with Android Studio.

dependencies {
    implementation 'com.sudoplatform:sudodirelay:$latest_version'
}

The latest version of the SDK can be found at SDK Releases.

In order to instantiate a Relay client, make sure you have followed instructions for Getting Started, User SDK and Sudo Profiles SDK (see Prerequisites above).

Client Initialization

To instantiate a client in your application add the following:

// val appContext: Context // The Android application context
val userClient = // ... see "Users" docs

val relayClient = SudoDIRelayClient.builder()
    .setContext(appContext)
    .setSudoUserClient(userClient)
    .build()

Last updated