Integrate the Edge Agent SDK
Integrate the Edge Agent SDK into your application
Get Started
Integrate the iOS SDK
To gain access to the iOS SDK and sample app providing a reference for integrating the SDK, please contact us.
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.
Integrate the Android SDK
To gain access to the Android SDK and sample app providing a reference for integrating the SDK, please contact us.
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")
}
Last updated