Skip to content

Commit ae3275c

Browse files
authored
Merge pull request #53 from appwrite/dev
Add 1.8.x support
2 parents e276e04 + c24e765 commit ae3275c

File tree

252 files changed

+7907
-254
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

252 files changed

+7907
-254
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
![Maven Central](https://img.shields.io/maven-central/v/io.appwrite/sdk-for-kotlin.svg?color=green&style=flat-square)
44
![License](https://img.shields.io/github/license/appwrite/sdk-for-kotlin.svg?style=flat-square)
5-
![Version](https://img.shields.io/badge/api%20version-1.7.4-blue.svg?style=flat-square)
5+
![Version](https://img.shields.io/badge/api%20version-1.8.0-blue.svg?style=flat-square)
66
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
77
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
88

9-
**This SDK is compatible with Appwrite server version 1.7.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-kotlin/releases).**
9+
**This SDK is compatible with Appwrite server version 1.8.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-kotlin/releases).**
1010

1111
> This is the Kotlin SDK for integrating with Appwrite from your Kotlin server-side code. If you're looking for the Android SDK you should check [appwrite/sdk-for-android](https://github.com/appwrite/sdk-for-android)
1212
@@ -39,7 +39,7 @@ repositories {
3939
Next, add the dependency to your project's `build.gradle(.kts)` file:
4040

4141
```groovy
42-
implementation("io.appwrite:sdk-for-kotlin:9.1.2")
42+
implementation("io.appwrite:sdk-for-kotlin:10.0.0")
4343
```
4444

4545
### Maven
@@ -50,7 +50,7 @@ Add this to your project's `pom.xml` file:
5050
<dependency>
5151
<groupId>io.appwrite</groupId>
5252
<artifactId>sdk-for-kotlin</artifactId>
53-
<version>9.1.2</version>
53+
<version>10.0.0</version>
5454
</dependency>
5555
</dependencies>
5656
```
File renamed without changes.
File renamed without changes.

docs/examples/java/account/create-mfa-authenticator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Client client = new Client()
1010

1111
Account account = new Account(client);
1212

13-
account.createMfaAuthenticator(
13+
account.createMFAAuthenticator(
1414
AuthenticatorType.TOTP, // type
1515
new CoroutineCallback<>((result, error) -> {
1616
if (error != null) {

docs/examples/java/account/create-mfa-challenge.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Client client = new Client()
99

1010
Account account = new Account(client);
1111

12-
account.createMfaChallenge(
12+
account.createMFAChallenge(
1313
AuthenticationFactor.EMAIL, // factor
1414
new CoroutineCallback<>((result, error) -> {
1515
if (error != null) {

docs/examples/java/account/create-mfa-recovery-codes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Client client = new Client()
99

1010
Account account = new Account(client);
1111

12-
account.createMfaRecoveryCodes(new CoroutineCallback<>((result, error) -> {
12+
account.createMFARecoveryCodes(new CoroutineCallback<>((result, error) -> {
1313
if (error != null) {
1414
error.printStackTrace();
1515
return;
File renamed without changes.

docs/examples/java/account/delete-mfa-authenticator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Client client = new Client()
1010

1111
Account account = new Account(client);
1212

13-
account.deleteMfaAuthenticator(
13+
account.deleteMFAAuthenticator(
1414
AuthenticatorType.TOTP, // type
1515
new CoroutineCallback<>((result, error) -> {
1616
if (error != null) {

docs/examples/java/account/get-mfa-recovery-codes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Client client = new Client()
99

1010
Account account = new Account(client);
1111

12-
account.getMfaRecoveryCodes(new CoroutineCallback<>((result, error) -> {
12+
account.getMFARecoveryCodes(new CoroutineCallback<>((result, error) -> {
1313
if (error != null) {
1414
error.printStackTrace();
1515
return;

docs/examples/java/account/list-mfa-factors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Client client = new Client()
99

1010
Account account = new Account(client);
1111

12-
account.listMfaFactors(new CoroutineCallback<>((result, error) -> {
12+
account.listMFAFactors(new CoroutineCallback<>((result, error) -> {
1313
if (error != null) {
1414
error.printStackTrace();
1515
return;

0 commit comments

Comments
 (0)