Updated on 2026-08-14

This commit is contained in:
Tangem 2026-04-06 20:37:03 +07:00
commit e52f9de341
987 changed files with 20247 additions and 8171 deletions

View file

@ -73,7 +73,6 @@ dependencies {
/** Other libraries */
implementation(deps.moshi)
implementation(deps.moshi.kotlin)
implementation(deps.timber)
ksp(deps.moshi.kotlin.codegen)
/** Core modules */

View file

@ -53,7 +53,7 @@
"version": "undefined"
},
{
"name": "MULTI_ADDRESS_UTXO_ENABLED",
"name": "DYNAMIC_ADDRESSES_ENABLED",
"version": "undefined"
},
{

View file

@ -1,7 +1,7 @@
package com.tangem.core.configtoggle.version
import androidx.annotation.VisibleForTesting
import timber.log.Timber
import com.tangem.utils.logging.TangemLogger
/**
* Presentation of application version (<major>.<minor>.<fix?>).
@ -67,7 +67,7 @@ internal class Version private constructor(value: String) : Comparable<Version>
return try {
Version(value)
} catch (exception: Exception) {
Timber.e(exception, "Invalid version - %s", value)
TangemLogger.e("Invalid version - $value", exception)
return null
}
}