Updated on 2026-08-14

This commit is contained in:
Tangem 2023-10-12 11:51:59 +04:00
parent f5666f3bd8
commit ad0dbbff1d
25 changed files with 241 additions and 5 deletions

1
features/manage-tokens/api/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/build

View file

@ -0,0 +1,14 @@
plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.features.managetokens.api"
}
dependencies {
/** AndroidX */
implementation(deps.androidx.fragment.ktx)
}

View file

@ -0,0 +1,5 @@
package com.tangem.features.managetokens.featuretoggles
interface ManageTokensFeatureToggles {
val isRedesignedScreenEnabled: Boolean
}

View file

@ -0,0 +1,7 @@
package com.tangem.features.managetokens.navigation
import androidx.fragment.app.Fragment
interface ManageTokensRouter {
fun getEntryFragment(): Fragment
}