tangem-app-android-audited/domain/account/status/build.gradle.kts
2025-09-19 13:23:00 +04:00

41 lines
No EOL
1 KiB
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
alias(deps.plugins.kotlin.kapt)
alias(deps.plugins.hilt.android)
id("configuration")
}
android {
namespace = "com.tangem.domain.account.status"
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}
dependencies {
implementation(projects.domain.account)
implementation(projects.domain.core)
implementation(projects.domain.quotes)
implementation(projects.domain.models)
implementation(projects.domain.networks)
implementation(projects.domain.staking)
implementation(projects.libs.crypto)
implementation(deps.kotlin.datetime)
// region DI
implementation(deps.hilt.android)
kapt(deps.hilt.kapt)
// end
testImplementation(deps.test.coroutine)
testImplementation(deps.test.junit5)
testRuntimeOnly(deps.test.junit5.engine)
testImplementation(deps.test.mockk)
testImplementation(deps.test.truth)
testImplementation(tangemDeps.blockchain)
testImplementation(projects.common.test)
}