17 lines
333 B
Kotlin
17 lines
333 B
Kotlin
plugins {
|
|
id("ivy.feature")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.ivy.core.ui"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.shared.resources)
|
|
implementation(projects.shared.designSystem)
|
|
implementation(projects.shared.domain)
|
|
implementation(projects.shared.navigation)
|
|
|
|
testImplementation(projects.shared.testing)
|
|
}
|