diff --git a/quickstart.mdx b/quickstart.mdx index f2978cc..fb6e0ef 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -33,15 +33,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.3 ``` [Full Flutter guide →](/sdk/flutter) @@ -55,13 +55,13 @@ pod 'LinkrunnerKit' ```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) @@ -73,14 +73,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 4600e66..f770565 100644 --- a/sdk/android.mdx +++ b/sdk/android.mdx @@ -28,7 +28,7 @@ Add the Linkrunner SDK to your app's `build.gradle` file: ```gradle dependencies { - implementation 'io.linkrunner:android-sdk:3.10.0' + implementation 'io.linkrunner:android-sdk:4.0.2' } ``` diff --git a/sdk/capacitor.mdx b/sdk/capacitor.mdx index 9df2340..a0156d7 100644 --- a/sdk/capacitor.mdx +++ b/sdk/capacitor.mdx @@ -20,10 +20,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 dd08335..d035a1a 100644 --- a/sdk/cordova.mdx +++ b/sdk/cordova.mdx @@ -42,7 +42,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 1995021..e39a06e 100644 --- a/sdk/expo.mdx +++ b/sdk/expo.mdx @@ -34,7 +34,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 2bf97e1..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 +flutter pub add linkrunner:^4.0.3 ``` This command will automatically: diff --git a/sdk/react-native.mdx b/sdk/react-native.mdx index e9720f1..3c344df 100644 --- a/sdk/react-native.mdx +++ b/sdk/react-native.mdx @@ -20,10 +20,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