smalltalk-matrix/features/directory/build.gradle
Adam Brown 9cd9520e52 Fix missing icon on shortcut entries
- adds locus id and context to the messages screen
- only shows shorcuts for the most recent rooms with activity (eventually this might want to be customised
2023-01-14 11:47:31 +00:00

25 lines
760 B
Groovy

plugins {
id "st-feature-conventions"
}
android {
namespace "app.dapk.st.directory"
}
dependencies {
implementation project(":domains:android:compose-core")
implementation project(":domains:android:imageloader")
implementation "chat-engine:chat-engine"
implementation 'screen-state:screen-android'
implementation project(":features:messenger")
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"))
}