2
0

make test lib as module

This commit is contained in:
2024-05-17 02:52:25 +07:00
parent 9419982f50
commit dc0302d272
18 changed files with 35 additions and 355 deletions

View File

@@ -1,5 +1,16 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
androidLibrary version Version.gradle apply false
kotlinAndroid version Version.Kotlin.language apply false
androidApplication
}
android {
namespace = "ru.samsung.test.core"
}
dependencies {
api(Dependencies.Kaspresso.core)
api(Dependencies.Kaspresso.composeSupport)
api(Dependencies.AndroidX.Testing.junit)
api(Dependencies.AndroidX.Testing.compose)
api(Dependencies.AndroidX.Testing.orchestrator)
api(Dependencies.truth)
}