Updated on 2026-08-14
This commit is contained in:
parent
103a78782f
commit
6359ee7dbe
19 changed files with 171 additions and 2 deletions
1
features/tokendetails/api/.gitignore
vendored
Normal file
1
features/tokendetails/api/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
14
features/tokendetails/api/build.gradle.kts
Normal file
14
features/tokendetails/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.tokendetails.api"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
/** AndroidX */
|
||||
implementation(deps.androidx.fragment.ktx)
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
package com.tangem.features.tokendetails.featuretoggles
|
||||
|
||||
interface TokenDetailsFeatureToggles {
|
||||
val isRedesignedScreenEnabled: Boolean
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
package com.tangem.features.tokendetails.navigation
|
||||
|
||||
import androidx.fragment.app.Fragment
|
||||
|
||||
interface TokenDetailsRouter {
|
||||
|
||||
fun getEntryFragment(): Fragment
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue