1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-2190 Protocol | Enhancement | MW 0.31.4

This commit is contained in:
uburoiubu 2024-02-06 12:12:53 +01:00
parent d03ba1a93b
commit 151c86f419
No known key found for this signature in database
GPG key ID: C8FB80E0A595FBB6
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,5 @@
[versions]
middlewareVersion = "v0.31.3"
middlewareVersion = "v0.31.4"
kotlinVersion = '1.8.22'
androidxCoreVersion = "1.12.0"

View file

@ -1017,3 +1017,8 @@ enum ImageKind {
Cover = 1;
Icon = 2;
}
enum FileIndexingStatus {
NotIndexed = 0;
Indexed = 1;
}