You've already forked element-android
mirror of
https://github.com/vector-im/element-android.git
synced 2025-07-28 08:42:00 +03:00
Merge branch 'develop' into feature/bca/rust_flavor
This commit is contained in:
@ -6,6 +6,8 @@ plugins {
|
||||
apply from: '../flavor.gradle'
|
||||
|
||||
android {
|
||||
namespace "org.matrix.android.sdk.flow"
|
||||
|
||||
compileSdk versions.compileSdk
|
||||
|
||||
defaultConfig {
|
||||
|
@ -1,5 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.matrix.android.sdk.flow">
|
||||
|
||||
</manifest>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" />
|
||||
|
@ -100,8 +100,8 @@ class FlowRoom(private val room: Room) {
|
||||
return room.readService().getReadMarkerLive().asFlow()
|
||||
}
|
||||
|
||||
fun liveReadReceipt(): Flow<Optional<String>> {
|
||||
return room.readService().getMyReadReceiptLive().asFlow()
|
||||
fun liveReadReceipt(threadId: String?): Flow<Optional<String>> {
|
||||
return room.readService().getMyReadReceiptLive(threadId).asFlow()
|
||||
}
|
||||
|
||||
fun liveEventReadReceipts(eventId: String): Flow<List<ReadReceipt>> {
|
||||
|
Reference in New Issue
Block a user