mirror of
https://github.com/ProtonMail/android-mail.git
synced 2026-05-15 09:50:40 +00:00
fix(deps): update dependency me.proton.mail.common:lib to v0.163.1
This commit is contained in:
@@ -69,7 +69,7 @@ material = "1.13.0"
|
||||
mockk = "1.14.7"
|
||||
paparazzi = "1.3.5"
|
||||
proton-core = "36.2.0"
|
||||
proton-rust-core = "0.162.2"
|
||||
proton-rust-core = "0.163.1"
|
||||
robolectric = "4.15.1" # 4.16.0 requires Java 21
|
||||
kotlinpoet-ksp = "2.2.0"
|
||||
leakcanary = "2.14"
|
||||
|
||||
+1
-1
@@ -74,7 +74,7 @@ class ConversationPaginatorWrapper(private val rustPaginator: ConversationScroll
|
||||
|
||||
fun disconnect() {
|
||||
Timber.d("conversation-paginator: Disconnecting paginator with id=%s", rustPaginator.id())
|
||||
rustPaginator.handle().disconnect()
|
||||
rustPaginator.watchHandle().disconnect()
|
||||
rustPaginator.terminate()
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -63,7 +63,7 @@ class MailboxMessagePaginatorWrapper(
|
||||
|
||||
override fun disconnect() {
|
||||
Timber.d("message-paginator: Disconnecting paginator with id=%s", rustPaginator.id())
|
||||
rustPaginator.handle().disconnect()
|
||||
rustPaginator.watchHandle().disconnect()
|
||||
rustPaginator.terminate()
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -66,7 +66,7 @@ class SearchMessagePaginatorWrapper(
|
||||
override fun disconnect() {
|
||||
Timber.d("search-paginator: Disconnecting paginator with id=%s", rustPaginator.id())
|
||||
|
||||
rustPaginator.handle().disconnect()
|
||||
rustPaginator.watchHandle().disconnect()
|
||||
rustPaginator.terminate()
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -17,7 +17,7 @@ import kotlinx.coroutines.test.runTest
|
||||
import org.junit.Rule
|
||||
import org.junit.Test
|
||||
import uniffi.proton_mail_uniffi.LiveQueryCallback
|
||||
import uniffi.proton_mail_uniffi.NoPointer
|
||||
import uniffi.proton_mail_uniffi.NoHandle
|
||||
import uniffi.proton_mail_uniffi.SettingsWatcher
|
||||
import uniffi.proton_mail_uniffi.WatchHandle
|
||||
import kotlin.test.assertEquals
|
||||
@@ -62,7 +62,7 @@ class RustMailSettingsDataSourceTest {
|
||||
val userSessionMock = mockk<MailUserSessionWrapper>()
|
||||
coEvery { userSessionRepository.getUserSession(userId) } returns userSessionMock
|
||||
|
||||
val mockWatchHandle = object : WatchHandle(NoPointer) {
|
||||
val mockWatchHandle = object : WatchHandle(NoHandle) {
|
||||
override fun disconnect() {
|
||||
// NOP
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user