Updating Your SDK
Learn how to update the SDK for each platform your app supports.
The latest ContextSDK version is 5.13.0 and was released on November 06, 2025.
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 Click → Update Package or Swift Packages → Update 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.
Download the latest release: https://storage.googleapis.com/de73e410-context-sdk-releases/latest/ContextSDK.zip
Drag & Drop the
ContextSDK.xcframeworkfolder into the Xcode file listGo to your project settings, scroll down to
Frameworks, Libraries, and Embedded Content, addContextSDK.xcframework, and selectEmbed & 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:
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:
dependencies {
// …
implementation 'com.contextsdk:contextsdk:1.0.0'
// …
}And run a Gradle sync to install the latest version of ContextSDK.
Update the
context_sdkversion in yourpubspec.yamlto the latest version.Run
flutter pub getRun
pod updatein theios/directory
Download the latest version of ContextSDK: ContextSDK.zip.
In your Unity project, drag
ContextSDK.xcframeworkinto theAssets/Plugins/iOSfolder.Add the
ContextSDKBinding.csscript 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.13.0:
https://storage.googleapis.com/de73e410-context-sdk-releases/5.13.0/ContextSDK.zip
npm install react-native-context-sdk@latestyarn up react-native-context-sdkValidate 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?