Integrate the Relay SDK

Integrate the Relay SDK into your application

Prerequisites

Get Started

Integrate the iOS SDK

Add this line to your Podfile:

pod 'SudoDIRelay'

Install pod dependencies by running the following command in your project directory:

pod install --repo-update

This will update the local CocoaPods repository 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
)

You only need one DefaultSudoDIRelayClient instance for a given user per device. Instantiating multiple clients with the same configuration and using them at the same time may cause unexpected runtime errors to occur.

See it in action. Be sure to take a look at the open-source iOS sample app on GitHub that our team published as a reference for integrating the Relay SDK into your app as quickly and seamlessly as possible.

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()

You only need one SudoDIRelayClient instance for a given user per device. Instantiating multiple clients with the same configuration and using them at the same time may cause unexpected runtime errors to occur.

See it in action. Be sure to take a look at the open-source Android sample app on GitHub that our team published as a reference for integrating the Decentralized Identity Relay SDK into your app as quickly and seamlessly as possible.

Last updated