Skip to content

Commit

Permalink
Merge pull request #4234 from element-hq/renovate/org.matrix.rustcomp…
Browse files Browse the repository at this point in the history
…onents-sdk-android-0.x

Update dependency org.matrix.rustcomponents:sdk-android to v0.2.78
  • Loading branch information
ganfra authored Feb 6, 2025
2 parents 3c87fb0 + 08235a7 commit 560290c
Show file tree
Hide file tree
Showing 5 changed files with 527 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ jsoup = "org.jsoup:jsoup:1.18.3"
appyx_core = { module = "com.bumble.appyx:core", version.ref = "appyx" }
molecule-runtime = "app.cash.molecule:molecule-runtime:2.0.0"
timber = "com.jakewharton.timber:timber:5.0.1"
matrix_sdk = "org.matrix.rustcomponents:sdk-android:0.2.77"
matrix_sdk = "org.matrix.rustcomponents:sdk-android:0.2.78"
matrix_richtexteditor = { module = "io.element.android:wysiwyg", version.ref = "wysiwyg" }
matrix_richtexteditor_compose = { module = "io.element.android:wysiwyg-compose", version.ref = "wysiwyg" }
sqldelight-driver-android = { module = "app.cash.sqldelight:android-driver", version.ref = "sqldelight" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package io.element.android.libraries.matrix.api.exception

sealed class ClientException(message: String) : Exception(message) {
class Generic(message: String) : ClientException(message)
class MatrixApi(val kind: ErrorKind, val code: String, message: String) : ClientException(message)
class Other(message: String) : ClientException(message)
}

Expand Down
Loading

0 comments on commit 560290c

Please sign in to comment.