smalltalk-matrix/features/messenger/build.gradle

24 lines
1.1 KiB
Groovy
Raw Normal View History

applyAndroidComposeLibraryModule(project)
2022-02-24 22:55:56 +01:00
apply plugin: 'kotlin-parcelize'
dependencies {
implementation project(":matrix:services:sync")
implementation project(":matrix:services:message")
implementation project(":matrix:services:room")
implementation project(":domains:android:core")
implementation project(":domains:android:viewmodel")
2022-02-24 22:55:56 +01:00
implementation project(":core")
implementation project(":features:navigator")
implementation project(":design-library")
2022-04-26 00:09:35 +02:00
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"))
2022-02-24 22:55:56 +01:00
}