Release candidate 4 for 1.5.x

This commit is contained in:
Jake Barnby
2024-02-21 23:36:01 +13:00
parent 7716280660
commit 956492a887
149 changed files with 531 additions and 322 deletions
@@ -9,10 +9,11 @@ Client client = new Client(context)
Databases databases = new Databases(client);
databases.createDocument(
"[DATABASE_ID]",
"[COLLECTION_ID]",
"[DOCUMENT_ID]",
mapOf( "a" to "b" ),
"[DATABASE_ID]", // databaseId
"[COLLECTION_ID]", // collectionId
"[DOCUMENT_ID]", // documentId
mapOf( "a" to "b" ), // data
listOf("read("any")"), // permissions (optional)
new CoroutineCallback<>((result, error) -> {
if (error != null) {
error.printStackTrace();
@@ -21,4 +22,5 @@ databases.createDocument(
Log.d("Appwrite", result.toString());
})
);
);