24 lines
1.0 KiB
Groovy
Raw Normal View History

applyAndroidComposeLibraryModule(project)
2022-02-24 21:55:56 +00:00
apply plugin: 'kotlin-parcelize'
dependencies {
implementation project(":chat-engine")
implementation project(":domains:android:compose-core")
implementation project(":domains:android:viewmodel")
implementation project(":domains:store")
2022-11-28 18:57:50 +00:00
implementation 'screen-state:screen-android'
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
kotlinTest(it)
2022-11-28 18:57:50 +00:00
testImplementation 'screen-state:state-test'
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"))
androidImportFixturesWorkaround(project, project(":chat-engine"))
2022-02-24 21:55:56 +00:00
}