2022-12-11 13:49:48 +01:00
|
|
|
plugins {
|
|
|
|
id "st-android-library-conventions"
|
|
|
|
alias libs.plugins.kotlin.serialization
|
|
|
|
}
|
2022-02-24 22:55:56 +01:00
|
|
|
|
|
|
|
dependencies {
|
2022-12-05 23:25:06 +01:00
|
|
|
implementation "chat-engine:chat-engine"
|
2022-02-24 22:55:56 +01:00
|
|
|
implementation project(':core')
|
2022-08-18 20:42:25 +02:00
|
|
|
implementation project(':domains:store')
|
2022-12-05 23:25:06 +01:00
|
|
|
implementation project(':domains:android:core')
|
2022-08-31 18:44:17 +02:00
|
|
|
|
|
|
|
firebase(it, "messaging")
|
|
|
|
|
2022-12-11 13:49:48 +01:00
|
|
|
implementation libs.kotlin.serialization
|
|
|
|
implementation libs.unifiedpush
|
2022-11-03 14:44:01 +01:00
|
|
|
|
|
|
|
kotlinTest(it)
|
2022-12-05 23:48:38 +01:00
|
|
|
testImplementation 'chat-engine:chat-engine-test'
|
2022-11-03 14:44:01 +01:00
|
|
|
androidImportFixturesWorkaround(project, project(":core"))
|
|
|
|
androidImportFixturesWorkaround(project, project(":domains:android:stub"))
|
2022-02-24 22:55:56 +01:00
|
|
|
}
|