tangem-app-android-audited/domain/visa/build.gradle.kts
2025-03-03 13:28:34 +04:00

29 lines
No EOL
754 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
alias(deps.plugins.ksp)
id("configuration")
}
android {
namespace = "com.tangem.domain.visa"
}
dependencies {
/** Domain models */
api(projects.domain.visa.models)
/** Project - Domain */
implementation(projects.core.utils)
implementation(projects.domain.core)
implementation(projects.domain.wallets.models)
implementation(projects.domain.tokens.models)
implementation(projects.domain.appCurrency.models)
/** Libs - Other */
implementation(deps.jodatime)
implementation(deps.androidx.paging.runtime)
implementation(deps.moshi)
implementation(deps.moshi.kotlin)
ksp(deps.moshi.kotlin.codegen)
}