From 4027cf97c0f1fc753fc966d88ab5ca4cc298fac2 Mon Sep 17 00:00:00 2001 From: chetan Date: Fri, 19 Jun 2026 18:13:32 +0530 Subject: [PATCH] docs: bump iOS and Android SDK install examples to latest Both SDK guides showed stale versions in their install snippets: - iOS SPM: from: "3.0.2" -> "3.11.0" - Android Gradle: io.linkrunner:android-sdk:2.1.5 -> 3.9.1 The Android pin is an exact Gradle version, so a developer copying it got 2.1.5 literally (two major lines behind). Bumped to the current Maven Central release. The iOS from: already resolves to latest; this just updates the displayed example. Co-Authored-By: Claude Opus 4.8 (1M context) --- sdk/android.mdx | 2 +- sdk/ios.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/android.mdx b/sdk/android.mdx index 402697e..3d9dc65 100644 --- a/sdk/android.mdx +++ b/sdk/android.mdx @@ -18,7 +18,7 @@ Add the Linkrunner SDK to your app's `build.gradle` file: ```gradle dependencies { - implementation 'io.linkrunner:android-sdk:2.1.5' + implementation 'io.linkrunner:android-sdk:3.9.1' } ``` diff --git a/sdk/ios.mdx b/sdk/ios.mdx index ce6f7ae..e9e899c 100644 --- a/sdk/ios.mdx +++ b/sdk/ios.mdx @@ -29,7 +29,7 @@ Alternatively, you can add the package dependency to your `Package.swift` file: ```swift dependencies: [ - .package(url: "https://github.com/linkrunner-labs/linkrunner-ios.git", from: "3.0.2") + .package(url: "https://github.com/linkrunner-labs/linkrunner-ios.git", from: "3.11.0") ] ```