2022-06-11 14:29:47 +02:00
|
|
|
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")
|
2022-09-21 23:42:04 +02:00
|
|
|
implementation project(":matrix:services:crypto")
|
2022-02-24 22:55:56 +01:00
|
|
|
implementation project(":matrix:services:room")
|
2022-06-11 15:10:17 +02:00
|
|
|
implementation project(":domains:android:compose-core")
|
2022-03-05 19:53:59 +01:00
|
|
|
implementation project(":domains:android:viewmodel")
|
2022-10-08 12:35:14 +02:00
|
|
|
implementation project(":domains:store")
|
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
|
2022-03-08 00:18:25 +01:00
|
|
|
|
|
|
|
kotlinTest(it)
|
|
|
|
|
|
|
|
androidImportFixturesWorkaround(project, project(":matrix:services:sync"))
|
2022-03-13 13:17:49 +01:00
|
|
|
androidImportFixturesWorkaround(project, project(":matrix:services:message"))
|
2022-03-08 00:18:25 +01:00
|
|
|
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
|
|
|
}
|