Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ Pick your platform and follow the install steps in the corresponding SDK guide.
<Tabs>
<Tab title="React Native">
```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)
</Tab>
<Tab title="Flutter">
```bash
flutter pub add linkrunner
flutter pub add linkrunner:^4.0.3
```
[Full Flutter guide →](/sdk/flutter)
</Tab>
Expand All @@ -55,13 +55,13 @@ pod 'LinkrunnerKit'
<Tab title="Android">
```kotlin
// build.gradle.kts
implementation("io.linkrunner:sdk:<latest>")
implementation("io.linkrunner:android-sdk:4.0.2")
```
[Full Android guide →](/sdk/android)
</Tab>
<Tab title="Expo">
```bash
npx expo install expo-linkrunner rn-linkrunner
npx expo install expo-linkrunner rn-linkrunner@3.0.2
```
[Full Expo guide →](/sdk/expo)
</Tab>
Expand All @@ -73,14 +73,14 @@ npx expo install expo-linkrunner rn-linkrunner
</Tab>
<Tab title="Capacitor">
```bash
npm install capacitor-linkrunner
npm install capacitor-linkrunner@2.1.1
npx cap sync
```
[Full Capacitor guide →](/sdk/capacitor)
</Tab>
<Tab title="Cordova">
```bash
cordova plugin add cordova-plugin-linkrunner
cordova plugin add cordova-linkrunner@1.2.1
```
[Full Cordova guide →](/sdk/cordova)
</Tab>
Expand Down
2 changes: 1 addition & 1 deletion sdk/android.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down
4 changes: 2 additions & 2 deletions sdk/capacitor.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sdk/cordova.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion sdk/expo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion sdk/flutter.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions sdk/react-native.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down