20 lines
455 B
Kotlin
20 lines
455 B
Kotlin
plugins {
|
|
id("ivy.feature")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.ivy.budgets"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.shared.base)
|
|
implementation(projects.shared.domain)
|
|
implementation(projects.shared.resources)
|
|
implementation(projects.temp.oldDesign)
|
|
implementation(projects.shared.navigation)
|
|
implementation(projects.temp.legacyCode)
|
|
implementation(projects.shared.data)
|
|
|
|
testImplementation(projects.shared.testing)
|
|
}
|