mirror of
https://github.com/ouchadam/small-talk.git
synced 2025-01-05 14:27:51 +01:00
128c2db432
- add a chat-engine abstraction - create a matrix-chat-engine implementation - starts by porting the initial creation and directory listing
21 lines
953 B
Groovy
21 lines
953 B
Groovy
applyAndroidComposeLibraryModule(project)
|
|
|
|
dependencies {
|
|
implementation project(":chat-engine")
|
|
implementation project(":domains:android:compose-core")
|
|
implementation project(":domains:android:viewmodel")
|
|
implementation project(":features:messenger")
|
|
implementation project(":core")
|
|
implementation project(":design-library")
|
|
implementation Dependencies.mavenCentral.coil
|
|
|
|
kotlinTest(it)
|
|
|
|
androidImportFixturesWorkaround(project, project(":matrix:services:sync"))
|
|
androidImportFixturesWorkaround(project, project(":matrix:services:message"))
|
|
androidImportFixturesWorkaround(project, project(":matrix:common"))
|
|
androidImportFixturesWorkaround(project, project(":core"))
|
|
androidImportFixturesWorkaround(project, project(":domains:store"))
|
|
androidImportFixturesWorkaround(project, project(":domains:android:viewmodel"))
|
|
androidImportFixturesWorkaround(project, project(":domains:android:stub"))
|
|
} |