Updated on 2026-08-14

This commit is contained in:
Tangem 2025-08-19 16:14:54 +04:00
parent 35fd75485c
commit 3e01845203
21 changed files with 1330 additions and 2 deletions

View file

@ -9,9 +9,14 @@ android {
namespace = "com.tangem.data.account"
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}
dependencies {
// region Project - Core
implementation(projects.core.datasource)
api(projects.core.utils)
// endregion
@ -21,7 +26,7 @@ dependencies {
// endregion
// Project - Data
implementation(projects.core.datasource)
implementation(projects.data.common)
// endregion
// region DI
@ -34,4 +39,13 @@ dependencies {
implementation(deps.kotlin.coroutines)
implementation(deps.timber)
// endregion
// region Test
testImplementation(deps.test.coroutine)
testImplementation(deps.test.junit5)
testRuntimeOnly(deps.test.junit5.engine)
testImplementation(deps.test.mockk)
testImplementation(deps.test.truth)
testImplementation(projects.common.test)
// endregion
}