Updated on 2026-08-14

This commit is contained in:
Tangem 2025-09-11 11:49:16 +05:00
parent 941baf081b
commit c0cf7515b0
12 changed files with 54 additions and 31 deletions

1
features/yield-supply/api/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/build

View 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)
}

View file

@ -0,0 +1,6 @@
package com.tangem.features.yield.supply.api
interface YieldSupplyFeatureToggles {
val isYieldSupplyFeatureEnabled: Boolean
}