Integrate the Edge Agent SDK

Integrate the Edge Agent SDK into your application

Get Started

Integrate the iOS SDK

circle-check

Add this line to your Podfile:

pod 'SudoDIEdgeAgent'

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 Edge Agent SDK.

circle-info

In order to instantiate an Agent, make sure you have followed the instructions for Getting Started.

Integrate the Android SDK

circle-check

The Android SDK is compatible with Android 8 (API level 26) 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:sudodiedgeagent:$latest_version'
    // required transitive dep of Edge Agent SDK
    implementation("net.java.dev.jna:jna:5.14.0@aar")
}
circle-info

In order to instantiate an Agent, make sure you have followed the first page of instructions for Getting Started.

Last updated