mirror of
https://github.com/appwrite/sdk-for-android.git
synced 2026-04-07 19:17:49 +00:00
Release candidate for 1.5.x
This commit is contained in:
@@ -21,4 +21,4 @@ databases.createDocument(
|
||||
|
||||
Log.d("Appwrite", result.toString());
|
||||
})
|
||||
);
|
||||
);
|
||||
@@ -11,7 +11,7 @@ Databases databases = new Databases(client);
|
||||
databases.deleteDocument(
|
||||
"[DATABASE_ID]",
|
||||
"[COLLECTION_ID]",
|
||||
"[DOCUMENT_ID]"
|
||||
"[DOCUMENT_ID]",
|
||||
new CoroutineCallback<>((result, error) -> {
|
||||
if (error != null) {
|
||||
error.printStackTrace();
|
||||
@@ -20,4 +20,4 @@ databases.deleteDocument(
|
||||
|
||||
Log.d("Appwrite", result.toString());
|
||||
})
|
||||
);
|
||||
);
|
||||
@@ -20,4 +20,4 @@ databases.getDocument(
|
||||
|
||||
Log.d("Appwrite", result.toString());
|
||||
})
|
||||
);
|
||||
);
|
||||
@@ -19,4 +19,4 @@ databases.listDocuments(
|
||||
|
||||
Log.d("Appwrite", result.toString());
|
||||
})
|
||||
);
|
||||
);
|
||||
@@ -20,4 +20,4 @@ databases.updateDocument(
|
||||
|
||||
Log.d("Appwrite", result.toString());
|
||||
})
|
||||
);
|
||||
);
|
||||
Reference in New Issue
Block a user