Updated on 2026-08-14

This commit is contained in:
Tangem 2026-04-16 15:24:55 +04:00
parent 70aa023245
commit 93c1276828
3 changed files with 575 additions and 0 deletions

View file

@ -8,6 +8,10 @@ android {
namespace = "com.tangem.common.ui"
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}
dependencies {
api(projects.common)
@ -48,4 +52,8 @@ dependencies {
implementation(tangemDeps.blockchain) {
exclude(module = "joda-time")
}
/** Tests */
testImplementation(projects.test.core)
testRuntimeOnly(deps.test.junit5.engine)
}