Update dependency org.matrix.rustcomponents:sdk-android to v26.05.20 (#6831)

* Update dependency org.matrix.rustcomponents:sdk-android to v26.05.20

* Fix API breaks:

- Handle new `ClientBuildException.InvalidRawKey` variant.
- `RoomInfo` now has a `fullyReadEventId` .

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jorge Martín <jorgem@element.io>
This commit is contained in:
renovate[bot] 2026-05-21 12:27:29 +02:00 committed by GitHub
parent 7d2ba03924
commit 550c0417dc
9 changed files with 15 additions and 1 deletions

View file

@ -72,6 +72,7 @@ fun aRoomInfo(
isLowPriority: Boolean = false,
activeCallIntentConsensus: CallIntentConsensus = CallIntentConsensus.None,
isDm: Boolean = false,
fullyReadEventId: EventId? = null,
) = RoomInfo(
id = id,
name = name,
@ -111,4 +112,5 @@ fun aRoomInfo(
isLowPriority = isLowPriority,
activeCallIntentConsensus = activeCallIntentConsensus,
isDm = isDm,
fullyReadEventId = fullyReadEventId,
)

View file

@ -81,6 +81,7 @@ fun aRoomSummary(
privilegedCreatorRole: Boolean = false,
isLowPriority: Boolean = false,
activeCallIntentConsensus: CallIntentConsensus = CallIntentConsensus.None,
fullyReadEventId: EventId? = null,
) = RoomSummary(
info = RoomInfo(
id = roomId,
@ -121,6 +122,7 @@ fun aRoomSummary(
isLowPriority = isLowPriority,
activeCallIntentConsensus = activeCallIntentConsensus,
isDm = false,
fullyReadEventId = fullyReadEventId,
),
latestEvent = latestEvent,
)