15 lines
277 B
Kotlin
15 lines
277 B
Kotlin
plugins {
|
|
id("ivy.feature")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.ivy.testing"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.shared.base)
|
|
|
|
// for this module we need test deps as "implementation" and not only "testImplementation"
|
|
implementation(libs.bundles.testing)
|
|
}
|