For the complete documentation index, see llms.txt. This page is also available as Markdown.

Updating Your SDK

Learn how to update the SDK for each platform your app supports.

The latest ContextSDK version is 5.17.0 and was released on August 14, 2026.

SPM has a few issues when it comes to caching its dependencies, so please be sure to follow all the steps below:

  • Trigger an update of SPM using your preferred method ( Right ClickUpdate Package or Swift PackagesUpdate to Latest Package Versions)

  • Clear Derived Data

  • Clean Build

  • Run the app again, and verify ContextManager.sdkVersion() is the latest version.

Alternatively, you can also specify the specific version of ContextSDK you want to use in your Package.swift or Xcode SPM settings.

Run pod update, or if you specified a specific version in your Podfile, run pod update ContextSDK.

  1. Drag & Drop the ContextSDK.xcframework folder into the Xcode file list

  2. Go to your project settings, scroll down to Frameworks, Libraries, and Embedded Content, add ContextSDK.xcframework, and select Embed & Sign

If you want to download a specific version, you can replace latest with the desired version number, e.g. https://storage.googleapis.com/de73e410-context-sdk-releases/5.0.0/ContextSDK.zip

Update the version specified in your module-level build.gradle.kts:

build.gradle.kts
dependencies {
    // …
    implementation("com.contextsdk:contextsdk:1.0.0")
    // …
}

And run a Gradle sync to install the latest version of ContextSDK.

Update the version specified in your module-level build.gradle:

build.gradle
dependencies {
    //
    implementation 'com.contextsdk:contextsdk:1.0.0'
    //
}

And run a Gradle sync to install the latest version of ContextSDK.

  1. Update the context_sdk version in your pubspec.yaml to the latest version.

  2. Run flutter pub get

  3. Run pod update in the ios/ directory

  1. Download the latest version of ContextSDK: ContextSDK.zip.

  2. In your Unity project, drag ContextSDK.xcframework into the Assets/Plugins/iOS folder.

  3. Add the ContextSDKBinding.cs script in the same folder.

To download a specific version, replace latest in the download URL with the desired version number. For example, to download version 5.17.0:

https://storage.googleapis.com/de73e410-context-sdk-releases/5.17.0/ContextSDK.zip

Validate the installation

After updating the SDK, please take a minute to go through the release checklist again, to ensure the SDK is correctly installed and configured, using the validate method. Just following the first step of the release checklist will prevent almost all potential integration errors.

Last updated

Was this helpful?