49 lines
No EOL
1.2 KiB
Kotlin
49 lines
No EOL
1.2 KiB
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
alias(deps.plugins.kotlin.kapt)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.data.dynamicaddresses"
|
|
}
|
|
|
|
tasks.withType<Test>().configureEach {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
dependencies {
|
|
// region Project - Core
|
|
implementation(projects.core.configToggles)
|
|
implementation(projects.core.datasource)
|
|
implementation(projects.core.utils)
|
|
// endregion
|
|
|
|
// region Project - Data
|
|
implementation(projects.data.common)
|
|
// endregion
|
|
|
|
// region Project - Domain
|
|
implementation(projects.domain.account)
|
|
implementation(projects.domain.dynamicAddresses)
|
|
implementation(projects.domain.dynamicAddresses.models)
|
|
implementation(projects.domain.models)
|
|
implementation(projects.domain.walletManager)
|
|
// endregion
|
|
|
|
// region Project - Libs
|
|
implementation(tangemDeps.blockchain) { exclude(module = "joda-time") }
|
|
implementation(tangemDeps.card.core)
|
|
// endregion
|
|
|
|
// region DI
|
|
implementation(deps.hilt.android)
|
|
kapt(deps.hilt.kapt)
|
|
// endregion
|
|
|
|
// region Testing
|
|
testRuntimeOnly(deps.test.junit5.engine)
|
|
testImplementation(projects.test.core)
|
|
// endregion
|
|
} |