smalltalk-matrix/features/home/build.gradle

28 lines
884 B
Groovy

plugins {
id "st-feature-conventions"
}
android {
namespace "app.dapk.st.home"
}
dependencies {
implementation "chat-engine:chat-engine"
implementation 'screen-state:screen-android'
implementation project(":features:directory")
implementation project(":features:login")
implementation project(":features:settings")
implementation project(":features:profile")
implementation project(":domains:android:compose-core")
implementation project(':domains:store')
implementation project(":core")
implementation project(":design-library")
implementation libs.compose.coil
kotlinTest(it)
testImplementation 'screen-state:state-test'
testImplementation 'chat-engine:chat-engine-test'
androidImportFixturesWorkaround(project, project(":core"))
androidImportFixturesWorkaround(project, project(":domains:android:stub"))
}