tangem-app-android-audited/features/tokendetails/api/build.gradle.kts
2025-02-19 12:25:53 +03:00

20 lines
No EOL
451 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("kotlin-parcelize")
id("configuration")
}
android {
namespace = "com.tangem.features.tokendetails.api"
}
dependencies {
/** Core */
implementation(projects.core.decompose)
implementation(projects.core.ui)
/** Domain models */
implementation(projects.domain.tokens.models)
implementation(projects.domain.wallets.models)
}