Files
Adrian Kuta d1ff0e30ba
Some checks failed
CI / build (push) Has been cancelled
Initial commit
2026-06-11 11:03:01 +02:00

16 lines
519 B
Kotlin

plugins {
alias(libs.plugins.architecture.android.feature.views)
}
// Classic Views renderer (Fragment + ViewBinding + RecyclerView) driving the SAME ViewModel from
// :feature:characters:presentation. ViewBinding ON, Compose OFF.
android {
namespace = "com.example.architecture.feature.characters.presentation.views"
}
dependencies {
implementation(project(":core:presentation"))
implementation(project(":feature:characters:domain"))
implementation(project(":feature:characters:presentation"))
}