Update the Rust SDK to v0.1.9 (#318)

* Update the Rust SDK to v0.1.7.

* Try to have the same setup for the build apk job and maestro.

* Add option to run maestro manually.

* Update to v0.1.9 (0.1.7 and 0.1.8 were broken in x86_64).
This commit is contained in:
Jorge Martin Espinosa 2023-04-17 17:43:21 +02:00 committed by GitHub
parent d391275420
commit 97917e7a2d
7 changed files with 22 additions and 14 deletions

View file

@ -16,6 +16,7 @@
package io.element.android.libraries.matrix.api.timeline.item.event
import io.element.android.libraries.matrix.api.core.EventId
import io.element.android.libraries.matrix.api.core.UserId
import io.element.android.libraries.matrix.api.media.AudioInfo
import io.element.android.libraries.matrix.api.media.FileInfo
@ -26,7 +27,7 @@ sealed interface EventContent
data class MessageContent(
val body: String,
val inReplyTo: UserId?,
val inReplyTo: EventId?,
val isEdited: Boolean,
val type: MessageType?
) : EventContent