Updated on 2026-08-14

This commit is contained in:
Tangem 2022-03-05 14:49:55 +03:00
parent 0270e3f84f
commit d8517d6387
2 changed files with 4 additions and 4 deletions

View file

@ -38,7 +38,7 @@ android {
}
debug_beta {
initWith release
debuggable true
debuggable false
versionNameSuffix "-beta"
applicationIdSuffix ".debug"
buildConfigField 'String', 'CONFIG_ENVIRONMENT', '\"prod\"'
@ -80,8 +80,8 @@ dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
implementation 'com.tangem:blockchain:develop-64'
implementation 'com.tangem.tangem-sdk-kotlin:core:develop-137'
implementation 'com.tangem.tangem-sdk-kotlin:android:develop-137'
implementation 'com.tangem.tangem-sdk-kotlin:core:develop-139'
implementation 'com.tangem.tangem-sdk-kotlin:android:develop-139'
// WebView
implementation "androidx.browser:browser:1.3.0"

View file

@ -153,7 +153,7 @@ class TangemSdkManager(private val tangemSdk: TangemSdk, private val context: Co
fun changeDisplayedCardIdNumbersCount(scanResponse: ScanResponse) {
tangemSdk.config.cardIdDisplayFormat = if (scanResponse.isTangemTwins()) {
CardIdDisplayFormat.LastLunh(4)
CardIdDisplayFormat.LastLuhn(4)
} else {
CardIdDisplayFormat.Full
}