14 lines
235 B
Kotlin
14 lines
235 B
Kotlin
plugins {
|
|
id("ivy.feature")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.ivy.navigation"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.shared.base)
|
|
implementation(projects.shared.domain)
|
|
implementation(projects.shared.designSystem)
|
|
}
|