Update dependency org.matrix.rustcomponents:sdk-android to v26.04.27 (#6666)

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

* Fix breaking API changes:

- OIDC components are now prefixed `OAuth`.
- `Room.startLiveLocationShare` now returns the event id of the beacon state event if it succeeds.
- `RoomInfo` now contains an `activeServiceMembersCount` property.

---------

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-04-28 14:49:37 +02:00 committed by GitHub
parent 90ed385745
commit 997227b020
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 50 additions and 42 deletions

View file

@ -196,9 +196,9 @@ interface JoinedRoom : BaseRoom {
/**
* Start sharing live location in this room.
* @param durationMillis How long to share location (in milliseconds).
* @return Result indicating success or failure.
* @return Result containing the [EventId] of the beacon state event on success or an error on failure.
*/
suspend fun startLiveLocationShare(durationMillis: Long): Result<Unit>
suspend fun startLiveLocationShare(durationMillis: Long): Result<EventId>
/**
* Stop sharing live location in this room.