Updated on 2026-08-14

This commit is contained in:
Tangem 2024-08-12 11:14:25 +05:00
parent aa50a54d59
commit 54800d32cc
5 changed files with 0 additions and 54 deletions

View file

@ -59,7 +59,6 @@ import com.tangem.tap.common.log.TimberFormatStrategy
import com.tangem.tap.common.redux.AppState
import com.tangem.tap.common.redux.appReducer
import com.tangem.tap.common.redux.global.GlobalAction
import com.tangem.tap.domain.configurable.warningMessage.WarningMessagesManager
import com.tangem.tap.domain.tasks.product.DerivationsFinder
import com.tangem.tap.domain.walletconnect2.domain.WalletConnectSessionsRepository
import com.tangem.tap.features.customtoken.api.featuretoggles.CustomTokenFeatureToggles
@ -228,8 +227,6 @@ abstract class TangemApplication : Application(), ImageLoaderFactory {
)
}
initWarningMessagesManager()
loadNativeLibraries()
if (LogConfig.network.blockchainSdkNetwork) {
@ -377,8 +374,4 @@ abstract class TangemApplication : Application(), ImageLoaderFactory {
)
store.dispatch(GlobalAction.SetFeedbackManager(feedbackManager))
}
private fun initWarningMessagesManager() {
store.dispatch(GlobalAction.SetWarningManager(WarningMessagesManager()))
}
}