24 lines
923 B
Groovy
Raw Normal View History

2022-12-11 12:49:48 +00:00
plugins {
id "st-feature-conventions"
}
2022-02-24 21:55:56 +00:00
dependencies {
implementation "chat-engine:chat-engine"
2022-02-24 21:55:56 +00:00
implementation project(":features:navigator")
implementation project(':domains:store')
2022-08-18 19:42:25 +01:00
implementation project(':domains:android:push')
implementation project(":domains:android:compose-core")
implementation project(":domains:android:viewmodel")
2022-11-28 18:57:50 +00:00
implementation 'screen-state:screen-android'
2022-02-24 21:55:56 +00:00
implementation project(":design-library")
implementation project(":core")
kotlinTest(it)
2022-11-28 18:57:50 +00:00
testImplementation 'screen-state:state-test'
2022-12-05 22:48:38 +00:00
testImplementation 'chat-engine:chat-engine-test'
androidImportFixturesWorkaround(project, project(":core"))
androidImportFixturesWorkaround(project, project(":domains:android:viewmodel"))
androidImportFixturesWorkaround(project, project(":domains:android:stub"))
2022-12-05 22:48:38 +00:00
androidImportFixturesWorkaround(project, project(":domains:store"))
2022-02-24 21:55:56 +00:00
}