Updated on 2026-08-14

This commit is contained in:
Tangem 2021-11-15 19:30:16 +03:00
parent 63dc3d5b57
commit f4e1752830
2 changed files with 4 additions and 4 deletions

View file

@ -77,8 +77,8 @@ dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
implementation 'com.tangem:blockchain:develop-44'
implementation 'com.tangem.tangem-sdk-kotlin:core:develop-94'
implementation 'com.tangem.tangem-sdk-kotlin:android:develop-94'
implementation 'com.tangem.tangem-sdk-kotlin:core:develop-95'
implementation 'com.tangem.tangem-sdk-kotlin:android:develop-95'
// WebView
implementation "androidx.browser:browser:1.3.0"

View file

@ -30,7 +30,7 @@ class CreateSecondTwinWalletTask(
return
}
session.setInitialMessage(preparingMessage)
session.setMessage(preparingMessage)
PurgeWalletCommand(publicKey).run(session) { response ->
when (response) {
is CompletionResult.Success -> {
@ -46,7 +46,7 @@ class CreateSecondTwinWalletTask(
}
private fun finishTask(session: CardSession, callback: (result: CompletionResult<CreateWalletResponse>) -> Unit) {
session.setInitialMessage(creatingWalletMessage)
session.setMessage(creatingWalletMessage)
CreateWalletCommand(EllipticCurve.Secp256k1).run(session) { result ->
when (result) {
is CompletionResult.Success -> {