2022-06-11 13:29:47 +01:00
|
|
|
applyAndroidComposeLibraryModule(project)
|
2022-02-24 21:55:56 +00:00
|
|
|
apply plugin: 'kotlin-parcelize'
|
|
|
|
|
|
|
|
dependencies {
|
2022-10-09 18:58:03 +01:00
|
|
|
implementation project(":chat-engine")
|
2022-06-11 14:10:17 +01:00
|
|
|
implementation project(":domains:android:compose-core")
|
2022-03-05 18:53:59 +00:00
|
|
|
implementation project(":domains:android:viewmodel")
|
2022-10-08 11:35:14 +01:00
|
|
|
implementation project(":domains:store")
|
2022-02-24 21:55:56 +00:00
|
|
|
implementation project(":core")
|
|
|
|
implementation project(":features:navigator")
|
|
|
|
implementation project(":design-library")
|
2022-04-25 23:09:35 +01:00
|
|
|
implementation Dependencies.mavenCentral.coil
|
2022-03-07 23:18:25 +00:00
|
|
|
|
|
|
|
kotlinTest(it)
|
|
|
|
|
|
|
|
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-10-12 19:57:16 +01:00
|
|
|
androidImportFixturesWorkaround(project, project(":chat-engine"))
|
2022-02-24 21:55:56 +00:00
|
|
|
}
|