mirror of
https://github.com/appwrite/appwrite
synced 2026-05-12 19:48:41 +00:00
43 lines
No EOL
1.7 KiB
Markdown
43 lines
No EOL
1.7 KiB
Markdown
# Appwrite SDK for Java
|
|
|
|

|
|

|
|
|
|
**This SDK is compatible with Appwrite server version 0.6.0. For older versions, please check previous 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 Java 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)
|
|
|
|
|
|
|
|

|
|
|
|
## Installation
|
|
|
|
### Maven
|
|
Add this to your project's `pom.xml` file:
|
|
|
|
```xml
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>appwrite</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
```
|
|
|
|
You can install packages from the command line:
|
|
|
|
```bash
|
|
mvn install appwrite
|
|
```
|
|
|
|
## Contribution
|
|
|
|
This library is auto-generated by Appwrite custom [SDK Generator](https://github.com/appwrite/sdk-generator). To learn more about how you can help us improve this SDK, please check the [contribution guide](https://github.com/appwrite/sdk-generator/blob/master/CONTRIBUTING.md) before sending a pull-request.
|
|
|
|
## License
|
|
|
|
Please see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information. |