Updated on 2026-08-14

This commit is contained in:
Tangem 2023-07-07 17:50:28 +05:00
parent 103a78782f
commit 6359ee7dbe
19 changed files with 171 additions and 2 deletions

1
features/tokendetails/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.tokendetails.api"
}
dependencies {
/** AndroidX */
implementation(deps.androidx.fragment.ktx)
}

View file

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

View file

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