tangem-app-android-audited/domain/express/build.gradle.kts
2025-06-17 12:14:43 +05:00

24 lines
No EOL
571 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
alias(deps.plugins.kotlin.serialization)
id("configuration")
}
android {
namespace = "com.tangem.domain.express.models"
}
dependencies {
/** Core */
implementation(projects.core.utils)
implementation(projects.core.datasource)
/** Domain */
implementation(projects.domain.express.models)
implementation(projects.domain.wallets.models)
implementation(projects.domain.tokens.models)
/** Other */
implementation(deps.moshi.adapters)
}