Skip to content

Commit 4869c1d

Browse files
committed
chore: update sdk versions across docs
1 parent 5805d83 commit 4869c1d

File tree

30 files changed

+30
-30
lines changed

30 files changed

+30
-30
lines changed

src/routes/docs/quick-starts/android-java/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ You can skip optional steps.
5353
To add the Appwrite SDK for Android as a dependency, add the following to your app-level **build.gradle** file inside the **dependencies** block.
5454

5555
```groovy
56-
implementation "io.appwrite:sdk-for-android:7.0.0"
56+
implementation "io.appwrite:sdk-for-android:8.1.0"
5757
```
5858

5959
In order to allow creating OAuth sessions, the following activity needs to be added inside the `<application>` tag, along side the existing `<activity>` tags in your [AndroidManifest.xml](https://github.com/appwrite/playground-for-android/blob/master/app/src/main/AndroidManifest.xml).

src/routes/docs/quick-starts/android/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ You can skip optional steps.
5353
To add the Appwrite SDK for Android as a dependency, add the following to your app-level **build.gradle.kts** file inside the **dependencies** block.
5454

5555
```kotlin
56-
implementation("io.appwrite:sdk-for-android:7.0.0")
56+
implementation("io.appwrite:sdk-for-android:8.1.0")
5757
```
5858

5959
In order to allow creating OAuth sessions, the following activity needs to be added inside the `<application>` tag, along side the existing `<activity>` tags in your [AndroidManifest.xml](https://github.com/appwrite/playground-for-flutter/blob/master/android/app/src/main/AndroidManifest.xml).

src/routes/docs/quick-starts/angular/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ cd my-app
5454
Install the JavaScript Appwrite SDK.
5555

5656
```sh
57-
npm install appwrite@14.0.1
57+
npm install appwrite@18.1.1
5858
```
5959
{% /section %}
6060
{% section #step-4 step=4 title="Import Appwrite" %}

src/routes/docs/quick-starts/apple/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ To add the Appwrite SDK for Apple as a dependency, open the **File** menu and cl
5252

5353
In the **Package URL** search box, enter https://github.com/appwrite/sdk-for-apple.
5454

55-
Once the SDK is found, use `5.0.0` as version, select **Up to Next Major Version** as your **Dependency Rule** and click **Add Package**.
55+
Once the SDK is found, use `10.1.0` as version, select **Up to Next Major Version** as your **Dependency Rule** and click **Add Package**.
5656

5757
When dependency resolution is complete, click **Add Package** again to add the SDK package to your target.
5858

src/routes/docs/quick-starts/dart/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ After entering the project directory, remove the `lib/` and `test/` directories.
5353
Install the Dart Appwrite SDK.
5454

5555
```sh
56-
dart pub add dart_appwrite:13.0.0
56+
dart pub add dart_appwrite:16.0.0
5757
```
5858
{% /section %}
5959
{% section #step-4 step=4 title="Import Appwrite" %}

src/routes/docs/quick-starts/deno/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Install the Deno Appwrite SDK by importing it `deno.land/x` at the top of your f
5555

5656
```
5757
// import all as sdk
58-
import * as sdk from "https://deno.land/x/appwrite@10.0.1/mod.ts";
58+
import * as sdk from "https://deno.land/x/appwrite@15.0.0/mod.ts";
5959

6060
// import only what you need
6161
import { Client, ... other imports } from "https://deno.land/x/appwrite/mod.ts";

src/routes/docs/quick-starts/dotnet/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ cd MyApp
5959
Install the .NET Appwrite SDK.
6060

6161
```sh
62-
dotnet add package Appwrite --version 0.8.1
62+
dotnet add package Appwrite --version 0.13.0
6363
```
6464
{% /section %}
6565
{% section #step-4 step=4 title="Import Appwrite" %}

src/routes/docs/quick-starts/flutter/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ You can skip optional steps.
158158
Install the Appwrite SDK for Flutter.
159159

160160
```sh
161-
flutter pub add appwrite:12.0.3
161+
flutter pub add appwrite:17.0.0
162162
```
163163

164164
{% /section %}

src/routes/docs/quick-starts/kotlin/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Open your `build.gradle.kts` file and implement the following dependency.
6464
```groovy
6565
dependencies {
6666
... other dependencies
67-
implementation("io.appwrite:sdk-for-kotlin:5.0.1")
67+
implementation("io.appwrite:sdk-for-kotlin:9.0.0")
6868
}
6969
```
7070

src/routes/docs/quick-starts/nextjs/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ These settings will create a minimal Next.js setup that's perfect for getting st
5353
Install the JavaScript Appwrite SDK.
5454

5555
```sh
56-
npm install appwrite@14.0.1
56+
npm install appwrite@18.1.1
5757
```
5858
{% /section %}
5959
{% section #step-4 step=4 title="Define Appwrite service" %}

0 commit comments

Comments
 (0)