16
feature/about/presentation/build.gradle.kts
Normal file
16
feature/about/presentation/build.gradle.kts
Normal file
@@ -0,0 +1,16 @@
|
||||
plugins {
|
||||
alias(libs.plugins.architecture.android.feature)
|
||||
// For @Serializable type-safe navigation routes.
|
||||
alias(libs.plugins.architecture.kotlinx.serialization)
|
||||
}
|
||||
|
||||
// MVVM contrast screen (StateFlow + plain VM methods, no Action/Event funnel). Static content,
|
||||
// so it has no data/domain modules.
|
||||
android {
|
||||
namespace = "com.example.architecture.feature.about.presentation"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":core:presentation"))
|
||||
implementation(project(":core:design-system"))
|
||||
}
|
||||
Reference in New Issue
Block a user