Update dependency org.matrix.rustcomponents:sdk-android to v26.2.16 (#6211)

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

* Fix log rotation breaking changes. The new values match iOS (https://github.com/element-hq/element-x-ios/pull/5108/)

* Fix `aRustRoomInfo()` test fixture

---------

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-02-17 10:42:31 +01:00 committed by GitHub
parent b8865d550d
commit 8c20770d21
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 13 additions and 6 deletions

View file

@ -15,7 +15,7 @@ sealed interface WriteToFilesConfiguration {
val filenamePrefix: String,
val numberOfFiles: Int?,
) : WriteToFilesConfiguration {
// DO NOT CHANGE: suffix *MUST* be "log" for the rageshake server to not rename the file to something generic
val filenameSuffix = "log"
// DO NOT CHANGE: suffix *MUST* be ".log" for the rageshake server to not rename the file to something generic
val filenameSuffix = ".log"
}
}