50 lines
No EOL
1.4 KiB
Kotlin
50 lines
No EOL
1.4 KiB
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
alias(deps.plugins.ksp)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.domain.visa"
|
|
}
|
|
|
|
tasks.withType<Test>().configureEach {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
dependencies {
|
|
/** Project - Core */
|
|
api(projects.core.pagination)
|
|
implementation(projects.core.analytics.models)
|
|
implementation(projects.core.error)
|
|
implementation(projects.core.security)
|
|
implementation(projects.core.utils)
|
|
|
|
/** Project - Domain */
|
|
api(projects.domain.models)
|
|
api(projects.domain.visa.models)
|
|
implementation(projects.domain.appCurrency.models)
|
|
implementation(projects.domain.core)
|
|
implementation(projects.domain.tokens.models)
|
|
implementation(projects.domain.wallets.models)
|
|
implementation(projects.core.datasource)
|
|
|
|
/** Security */
|
|
implementation(deps.spongecastle.core)
|
|
|
|
/** Libs - Other */
|
|
implementation(deps.jodatime)
|
|
implementation(deps.androidx.paging.runtime)
|
|
implementation(deps.moshi)
|
|
implementation(deps.moshi.kotlin)
|
|
ksp(deps.moshi.kotlin.codegen)
|
|
|
|
/** Tests */
|
|
testImplementation(deps.test.junit5)
|
|
testRuntimeOnly(deps.test.junit5.engine)
|
|
testImplementation(deps.test.mockk)
|
|
testImplementation(deps.test.coroutine)
|
|
testImplementation(deps.test.truth)
|
|
testImplementation(projects.test.core)
|
|
} |