tangem-app-android-audited/features/marketing/api/build.gradle.kts
2026-07-21 16:15:59 +04:00

17 lines
No EOL
375 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.features.marketing.api"
}
dependencies {
implementation(projects.core.decompose)
implementation(projects.core.ui)
implementation(projects.domain.marketing.models)
implementation(deps.kotlin.coroutines)
}