Merge branch 'master' of github.com:appwrite/sdk-for-android into dev

This commit is contained in:
Christy Jacob
2022-05-17 19:43:20 +04:00
2 changed files with 12 additions and 4 deletions
+10 -2
View File
@@ -2,12 +2,12 @@
![Maven Central](https://img.shields.io/maven-central/v/io.appwrite/sdk-for-android.svg?color=green&style=flat-square)
![License](https://img.shields.io/github/license/appwrite/sdk-for-android.svg?style=flat-square)
![Version](https://img.shields.io/badge/api%20version-0.12.0-blue.svg?style=flat-square)
![Version](https://img.shields.io/badge/api%20version-0.11.0-blue.svg?style=flat-square)
[![Build Status](https://img.shields.io/travis/com/appwrite/sdk-generator?style=flat-square)](https://travis-ci.com/appwrite/sdk-generator)
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite_io?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite_io)
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
**This SDK is compatible with Appwrite server version 0.12.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-android/releases).**
**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).**
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)
@@ -38,7 +38,11 @@ repositories {
Next, add the dependency to your project's `build.gradle(.kts)` file:
```groovy
<<<<<<< HEAD
implementation("io.appwrite:sdk-for-android:0.3.0-SNAPSHOT")
=======
implementation("io.appwrite:sdk-for-android:0.2.1")
>>>>>>> de10694090d63c4d6b8d39a3f651f5b6cc21d0c0
```
### Maven
@@ -49,7 +53,11 @@ Add this to your project's `pom.xml` file:
<dependency>
<groupId>io.appwrite</groupId>
<artifactId>sdk-for-android</artifactId>
<<<<<<< HEAD
<version>0.3.0-SNAPSHOT</version>
=======
<version>0.2.1</version>
>>>>>>> de10694090d63c4d6b8d39a3f651f5b6cc21d0c0
</dependency>
</dependencies>
```
+2 -2
View File
@@ -2,8 +2,8 @@ apply plugin: 'io.github.gradle-nexus.publish-plugin'
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.5.31"
version "0.3.0-SNAPSHOT"
ext.kotlin_version = "1.4.31"
version '0.2.1'
repositories {
maven { url "https://plugins.gradle.org/m2/" }
google()