Skip to content

Commit 31eac35

Browse files
target right branch
1 parent 749020f commit 31eac35

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

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

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

10-
**This SDK is compatible with Appwrite server version 0.10.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-android/releases).**
10+
**This SDK is compatible with Appwrite server version 0.11.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-android/releases).**
1111

1212
Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Android SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
1313

@@ -38,7 +38,7 @@ repositories {
3838
Next, add the dependency to your project's `build.gradle(.kts)` file:
3939

4040
```groovy
41-
implementation("io.appwrite:sdk-for-android:0.2.0")
41+
implementation("io.appwrite:sdk-for-android:0.2.1")
4242
```
4343

4444
### Maven
@@ -49,7 +49,7 @@ Add this to your project's `pom.xml` file:
4949
<dependency>
5050
<groupId>io.appwrite</groupId>
5151
<artifactId>sdk-for-android</artifactId>
52-
<version>0.2.0</version>
52+
<version>0.2.1</version>
5353
</dependency>
5454
</dependencies>
5555
```

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'io.github.gradle-nexus.publish-plugin'
33
// Top-level build file where you can add configuration options common to all sub-projects/modules.
44
buildscript {
55
ext.kotlin_version = "1.4.31"
6-
version '0.2.0'
6+
version '0.2.1'
77
repositories {
88
maven { url "https://plugins.gradle.org/m2/" }
99
google()

library/src/main/java/io/appwrite/Client.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class Client @JvmOverloads constructor(
7171
"origin" to "appwrite-android://${context.packageName}",
7272
"user-agent" to "${context.packageName}/${appVersion}, ${System.getProperty("http.agent")}",
7373
"x-sdk-version" to "appwrite:android:${BuildConfig.SDK_VERSION}",
74-
"x-appwrite-response-format" to "0.10.0"
74+
"x-appwrite-response-format" to "0.11.0"
7575
)
7676
config = mutableMapOf()
7777

library/src/main/java/io/appwrite/services/Teams.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,9 @@ class Teams(client: Client) : Service(client) {
231231
val path = "/teams/{teamId}/memberships".replace("{teamId}", teamId)
232232
val params = mapOf<String, Any?>(
233233
"email" to email,
234-
"name" to name,
235234
"roles" to roles,
236-
"url" to url
235+
"url" to url,
236+
"name" to name
237237
)
238238

239239
val headers = mapOf(

0 commit comments

Comments
 (0)