Updated on 2026-08-14
This commit is contained in:
parent
941baf081b
commit
c0cf7515b0
12 changed files with 54 additions and 31 deletions
1
features/yield-supply/api/.gitignore
vendored
Normal file
1
features/yield-supply/api/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
24
features/yield-supply/api/build.gradle.kts
Normal file
24
features/yield-supply/api/build.gradle.kts
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
plugins {
|
||||
alias(deps.plugins.android.library)
|
||||
alias(deps.plugins.kotlin.android)
|
||||
id("configuration")
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "com.tangem.features.yield.supply.api"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
/** Core */
|
||||
implementation(projects.core.decompose)
|
||||
implementation(projects.core.ui)
|
||||
|
||||
/** Domain */
|
||||
implementation(projects.domain.models)
|
||||
implementation(projects.domain.wallets.models)
|
||||
implementation(projects.domain.tokens.models)
|
||||
implementation(projects.domain.appCurrency.models)
|
||||
|
||||
/** Compose */
|
||||
implementation(deps.compose.runtime)
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
package com.tangem.features.yield.supply.api
|
||||
|
||||
interface YieldSupplyFeatureToggles {
|
||||
|
||||
val isYieldSupplyFeatureEnabled: Boolean
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue