Updated on 2026-08-14
This commit is contained in:
parent
c80dcd69cc
commit
08708a2ba7
3 changed files with 4 additions and 3 deletions
|
|
@ -78,8 +78,8 @@ dependencies {
|
|||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
|
||||
|
||||
implementation 'com.tangem:blockchain:develop-51'
|
||||
implementation 'com.tangem.tangem-sdk-kotlin:core:develop-105'
|
||||
implementation 'com.tangem.tangem-sdk-kotlin:android:develop-105'
|
||||
implementation 'com.tangem.tangem-sdk-kotlin:core:develop-106'
|
||||
implementation 'com.tangem.tangem-sdk-kotlin:android:develop-106'
|
||||
|
||||
// WebView
|
||||
implementation "androidx.browser:browser:1.3.0"
|
||||
|
|
|
|||
|
|
@ -104,6 +104,7 @@ object TangemSdk {
|
|||
is TangemSdkError.HDWalletDisabled -> TangemSdkError.HDWalletDisabled()
|
||||
is TangemSdkError.WrongInteractionMode -> TangemSdkError.WrongInteractionMode()
|
||||
is TangemSdkError.IssuerSignatureLoadingFailed -> TangemSdkError.IssuerSignatureLoadingFailed()
|
||||
is TangemSdkError.BackupFailedFirmware -> TangemSdkError.BackupFailedFirmware()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class MultiWalletView : WalletView {
|
|||
|
||||
private fun setupWalletCardNumber(fragment: WalletFragment) = with(fragment) {
|
||||
val card = store.state.globalState.scanResponse?.card
|
||||
if (card?.backupStatus?.isActive == true) {
|
||||
if (card?.backupStatus is Card.BackupStatus.Active) {
|
||||
val cardCount = (card.backupStatus as Card.BackupStatus.Active).cardCount + 1
|
||||
tv_twin_card_number.show()
|
||||
tv_twin_card_number.text =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue