From f6adeb3e9bca3068fb428d2d41d087ea2b5cc2de Mon Sep 17 00:00:00 2001 From: chetan Date: Thu, 23 Jul 2026 17:15:59 +0530 Subject: [PATCH 1/2] docs: update SDK versions for LIN-1946 --- quickstart.mdx | 14 +++++++------- sdk/android.mdx | 2 +- sdk/capacitor.mdx | 4 ++-- sdk/cordova.mdx | 2 +- sdk/expo.mdx | 2 +- sdk/flutter.mdx | 2 +- sdk/react-native.mdx | 4 ++-- 7 files changed, 15 insertions(+), 15 deletions(-) diff --git a/quickstart.mdx b/quickstart.mdx index 57659ec..fe8df93 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -22,15 +22,15 @@ Pick your platform and follow the install steps in the corresponding SDK guide. ```bash -npm install rn-linkrunner +npm install rn-linkrunner@3.0.2 # or -yarn add rn-linkrunner +yarn add rn-linkrunner@3.0.2 ``` [Full React Native guide →](/sdk/react-native) ```bash -flutter pub add linkrunner +flutter pub add linkrunner:^4.0.2 ``` [Full Flutter guide →](/sdk/flutter) @@ -44,13 +44,13 @@ pod 'Linkrunner' ```kotlin // build.gradle.kts -implementation("io.linkrunner:sdk:") +implementation("io.linkrunner:android-sdk:4.0.2") ``` [Full Android guide →](/sdk/android) ```bash -npx expo install expo-linkrunner rn-linkrunner +npx expo install expo-linkrunner rn-linkrunner@3.0.2 ``` [Full Expo guide →](/sdk/expo) @@ -62,14 +62,14 @@ npx expo install expo-linkrunner rn-linkrunner ```bash -npm install capacitor-linkrunner +npm install capacitor-linkrunner@2.1.1 npx cap sync ``` [Full Capacitor guide →](/sdk/capacitor) ```bash -cordova plugin add cordova-plugin-linkrunner +cordova plugin add cordova-linkrunner@1.2.1 ``` [Full Cordova guide →](/sdk/cordova) diff --git a/sdk/android.mdx b/sdk/android.mdx index ba4afe8..93b12a7 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:4.0.2' } ``` diff --git a/sdk/capacitor.mdx b/sdk/capacitor.mdx index 4b39b05..8b5e772 100644 --- a/sdk/capacitor.mdx +++ b/sdk/capacitor.mdx @@ -10,10 +10,10 @@ icon: "/images/icons/capacitor.svg" ```bash # Using npm -npm install capacitor-linkrunner +npm install capacitor-linkrunner@2.1.1 # Using yarn -yarn add capacitor-linkrunner +yarn add capacitor-linkrunner@2.1.1 ``` ### Step 2: Sync Native Projects diff --git a/sdk/cordova.mdx b/sdk/cordova.mdx index fabfec2..9aeaae9 100644 --- a/sdk/cordova.mdx +++ b/sdk/cordova.mdx @@ -32,7 +32,7 @@ Before adding platforms or installing the plugin, add the following preferences ### Step 2: Install the Plugin ```bash -cordova plugin add cordova-linkrunner +cordova plugin add cordova-linkrunner@1.2.1 ``` This single command handles everything automatically: diff --git a/sdk/expo.mdx b/sdk/expo.mdx index 2a1e850..5c726f5 100644 --- a/sdk/expo.mdx +++ b/sdk/expo.mdx @@ -24,7 +24,7 @@ This guide will help you install, configure, and use the Linkrunner SDK in your Install both the React Native and Expo packages: ```bash -npm install rn-linkrunner +npm install rn-linkrunner@3.0.2 npx expo install expo-linkrunner ``` diff --git a/sdk/flutter.mdx b/sdk/flutter.mdx index 6003d06..ad144e0 100644 --- a/sdk/flutter.mdx +++ b/sdk/flutter.mdx @@ -40,7 +40,7 @@ icon: "flutter" Run the following command to add the latest version of the Linkrunner package to your project: ```bash -flutter pub add linkrunner +flutter pub add linkrunner:^4.0.2 ``` This command will automatically: diff --git a/sdk/react-native.mdx b/sdk/react-native.mdx index 8ea961e..1f45b3d 100644 --- a/sdk/react-native.mdx +++ b/sdk/react-native.mdx @@ -10,10 +10,10 @@ icon: "react" ```bash # Using npm -npm install rn-linkrunner +npm install rn-linkrunner@3.0.2 # Using yarn -yarn add rn-linkrunner +yarn add rn-linkrunner@3.0.2 ``` ### Step 2: iOS Configuration From c6fad7394d887c10a3e3af220225fd65c5065aa8 Mon Sep 17 00:00:00 2001 From: chetan Date: Thu, 23 Jul 2026 19:14:12 +0530 Subject: [PATCH 2/2] docs: update Flutter SDK version to 4.0.3 --- quickstart.mdx | 2 +- sdk/flutter.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/quickstart.mdx b/quickstart.mdx index 39d4ab9..fb6e0ef 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -41,7 +41,7 @@ yarn add rn-linkrunner@3.0.2 ```bash -flutter pub add linkrunner:^4.0.2 +flutter pub add linkrunner:^4.0.3 ``` [Full Flutter guide →](/sdk/flutter) diff --git a/sdk/flutter.mdx b/sdk/flutter.mdx index fd85ea5..cd70051 100644 --- a/sdk/flutter.mdx +++ b/sdk/flutter.mdx @@ -50,7 +50,7 @@ icon: "flutter" Run the following command to add the latest version of the Linkrunner package to your project: ```bash -flutter pub add linkrunner:^4.0.2 +flutter pub add linkrunner:^4.0.3 ``` This command will automatically: