Updated on 2026-08-14
This commit is contained in:
commit
e52f9de341
987 changed files with 20247 additions and 8171 deletions
|
|
@ -73,7 +73,6 @@ dependencies {
|
|||
/** Other libraries */
|
||||
implementation(deps.moshi)
|
||||
implementation(deps.moshi.kotlin)
|
||||
implementation(deps.timber)
|
||||
ksp(deps.moshi.kotlin.codegen)
|
||||
|
||||
/** Core modules */
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@
|
|||
"version": "undefined"
|
||||
},
|
||||
{
|
||||
"name": "MULTI_ADDRESS_UTXO_ENABLED",
|
||||
"name": "DYNAMIC_ADDRESSES_ENABLED",
|
||||
"version": "undefined"
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue