Updated on 2026-08-14
This commit is contained in:
parent
f5666f3bd8
commit
ad0dbbff1d
25 changed files with 241 additions and 5 deletions
1
features/manage-tokens/api/.gitignore
vendored
Normal file
1
features/manage-tokens/api/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
14
features/manage-tokens/api/build.gradle.kts
Normal file
14
features/manage-tokens/api/build.gradle.kts
Normal 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)
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
package com.tangem.features.managetokens.featuretoggles
|
||||
|
||||
interface ManageTokensFeatureToggles {
|
||||
val isRedesignedScreenEnabled: Boolean
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
package com.tangem.features.managetokens.navigation
|
||||
|
||||
import androidx.fragment.app.Fragment
|
||||
|
||||
interface ManageTokensRouter {
|
||||
fun getEntryFragment(): Fragment
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue