19 lines
424 B
Kotlin
19 lines
424 B
Kotlin
plugins {
|
|
id("ivy.feature")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.ivy.attributions"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.shared.base)
|
|
implementation(projects.shared.domain)
|
|
implementation(projects.shared.resources)
|
|
implementation(projects.shared.navigation)
|
|
implementation(projects.shared.commonUi)
|
|
implementation(projects.shared.designSystem)
|
|
|
|
testImplementation(projects.shared.testing)
|
|
}
|