diff --git a/app/build.gradle b/app/build.gradle index 923c2c5326..e33f448654 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -76,9 +76,9 @@ dependencies { implementation 'com.google.android.play:core-ktx:1.8.1' coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5' - implementation 'com.tangem:blockchain:develop-38' - implementation 'com.tangem.tangem-sdk-kotlin:core:develop-78' - implementation 'com.tangem.tangem-sdk-kotlin:android:develop-78' + implementation 'com.tangem:blockchain:develop-41' + implementation 'com.tangem.tangem-sdk-kotlin:core:develop-79' + implementation 'com.tangem.tangem-sdk-kotlin:android:develop-79' // WebView implementation "androidx.browser:browser:1.3.0" diff --git a/app/src/main/java/com/tangem/tap/features/details/redux/DetailsReducer.kt b/app/src/main/java/com/tangem/tap/features/details/redux/DetailsReducer.kt index 62253c27f2..61b94447a1 100644 --- a/app/src/main/java/com/tangem/tap/features/details/redux/DetailsReducer.kt +++ b/app/src/main/java/com/tangem/tap/features/details/redux/DetailsReducer.kt @@ -185,7 +185,7 @@ private fun handleSecurityAction( private fun prepareAllowedSecurityOptions( card: Card?, currentSecurityOption: SecurityOption? ): EnumSet { - val prohibitDefaultPin = card?.settings?.isRemovingAccessCodeAllowed != true + val prohibitDefaultPin = card?.settings?.isResettingUserCodesAllowed != true val allowedSecurityOptions = EnumSet.noneOf(SecurityOption::class.java) if ((currentSecurityOption == SecurityOption.LongTap) || !prohibitDefaultPin) {