smalltalk-matrix/features/directory/build.gradle

20 lines
827 B
Groovy
Raw Normal View History

applyAndroidComposeLibraryModule(project)
2022-02-24 22:55:56 +01:00
dependencies {
implementation project(":domains:android:compose-core")
implementation "chat-engine:chat-engine"
2022-11-28 19:57:50 +01:00
implementation 'screen-state:screen-android'
2022-02-24 22:55:56 +01:00
implementation project(":features:messenger")
implementation project(":core")
implementation project(":design-library")
2022-04-26 00:09:35 +02:00
implementation Dependencies.mavenCentral.coil
kotlinTest(it)
2022-11-28 19:57:50 +01:00
testImplementation 'screen-state:state-test'
androidImportFixturesWorkaround(project, project(":core"))
androidImportFixturesWorkaround(project, project(":domains:android:stub"))
// androidImportFixturesWorkaround(project, project(":domains:store"))
// androidImportFixturesWorkaround(project, project(":chat-engine"))
// androidImportFixturesWorkaround(project, project(":matrix:common"))
2022-02-24 22:55:56 +01:00
}