tangem-app-android-audited/features/hot-wallet/api/build.gradle.kts
2026-07-06 10:19:56 +03:00

25 lines
No EOL
506 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.features.hotwallet.api"
}
dependencies {
api(projects.common.routing)
/* Project - Domain */
api(projects.domain.models)
api(projects.domain.wallets)
/* Project - Core */
api(projects.core.analytics.models)
api(projects.core.decompose)
api(projects.core.ui)
/* Tangem libraries */
api(tangemDeps.card.core)
}