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

24 lines
No EOL
545 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.swap.models"
}
dependencies {
/** Domain */
implementation(projects.domain.models)
implementation(projects.domain.express.models)
implementation(projects.domain.tokens.models)
/** Core */
implementation(projects.core.datasource)
/** Other */
implementation(deps.jodatime)
implementation(deps.moshi)
}