Updated on 2026-08-14

This commit is contained in:
Tangem 2025-06-25 12:48:32 +03:00
parent 0ff4768da9
commit b9bb9e1086
21 changed files with 789 additions and 3 deletions

View file

@ -0,0 +1,22 @@
plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.features.welcome.api"
}
dependencies {
/** Core */
implementation(projects.core.decompose)
implementation(projects.core.ui)
implementation(projects.common.routing)
/** Domain models */
implementation(projects.domain.wallets.models)
/** Compose */
implementation(deps.compose.runtime)
}