This commit is contained in:
root
2026-02-12 05:44:42 +00:00
parent 81464a88fb
commit bb1bed8428
3 changed files with 9 additions and 3 deletions
+6
View File
@@ -1,5 +1,11 @@
# Change Log
## 12.1.0
* Add `queries` parameter to Realtime subscriptions for filtering events
* Add `subscriptions` field to `RealtimeCallback` and `RealtimeResponseEvent` types
* Fix `Roles` enum removed from Teams service; `roles` parameter now accepts `List<String>`
## 12.0.0
* Add array-based enum parameters (e.g., `permissions: List<BrowserPermission>`).
+2 -2
View File
@@ -38,7 +38,7 @@ repositories {
Next, add the dependency to your project's `build.gradle(.kts)` file:
```groovy
implementation("io.appwrite:sdk-for-android:12.0.0")
implementation("io.appwrite:sdk-for-android:12.1.0")
```
### Maven
@@ -49,7 +49,7 @@ Add this to your project's `pom.xml` file:
<dependency>
<groupId>io.appwrite</groupId>
<artifactId>sdk-for-android</artifactId>
<version>12.0.0</version>
<version>12.1.0</version>
</dependency>
</dependencies>
```
+1 -1
View File
@@ -87,7 +87,7 @@ class Client @JvmOverloads constructor(
"x-sdk-name" to "Android",
"x-sdk-platform" to "client",
"x-sdk-language" to "android",
"x-sdk-version" to "12.0.0",
"x-sdk-version" to "12.1.0",
"x-appwrite-response-format" to "1.8.0"
)
config = mutableMapOf()