22 lines
845 B
Kotlin
22 lines
845 B
Kotlin
plugins {
|
|
alias(libs.plugins.architecture.android.feature)
|
|
// For @Serializable type-safe navigation routes.
|
|
alias(libs.plugins.architecture.kotlinx.serialization)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.example.architecture.feature.characters.presentation.compose"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core:presentation"))
|
|
implementation(project(":core:design-system"))
|
|
implementation(project(":feature:characters:domain"))
|
|
implementation(project(":feature:characters:presentation"))
|
|
|
|
// Instrumented Compose UI test (robot pattern). The Compose convention already adds the BOM to
|
|
// androidTestImplementation; ui-test-manifest provides the empty Activity ComposeTestRule hosts in.
|
|
androidTestImplementation(libs.bundles.compose.ui.test)
|
|
debugImplementation(libs.androidx.compose.ui.test.manifest)
|
|
}
|