File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/rustCrypto/java/org/matrix/android/sdk/internal/crypto Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ dependencies {
216
216
217
217
implementation libs. google. phonenumber
218
218
219
- rustCryptoImplementation(" org.matrix.rustcomponents:crypto-android:0.3.7 " )
219
+ rustCryptoImplementation(" org.matrix.rustcomponents:crypto-android:0.3.8 " )
220
220
// rustCryptoApi project(":library:rustCrypto")
221
221
222
222
testImplementation libs. tests. junit
Original file line number Diff line number Diff line change @@ -183,8 +183,9 @@ internal class RustCryptoService @Inject constructor(
183
183
184
184
override fun getCryptoVersion (context : Context , longFormat : Boolean ): String {
185
185
val version = org.matrix.rustcomponents.sdk.crypto.version()
186
+ val gitHash = org.matrix.rustcomponents.sdk.crypto.versionInfo().gitSha
186
187
val vodozemac = org.matrix.rustcomponents.sdk.crypto.vodozemacVersion()
187
- return if (longFormat) " Rust SDK $version , Vodozemac $vodozemac " else version
188
+ return if (longFormat) " Rust SDK $version ( $gitHash ) , Vodozemac $vodozemac " else version
188
189
}
189
190
190
191
override suspend fun getMyCryptoDevice (): CryptoDeviceInfo = withContext(coroutineDispatchers.io) {
You can’t perform that action at this time.
0 commit comments