2022-12-11 13:49:48 +01:00
|
|
|
plugins {
|
|
|
|
id "st-android-library-conventions"
|
|
|
|
}
|
2022-02-24 22:55:56 +01:00
|
|
|
|
2022-12-11 16:06:05 +01:00
|
|
|
android {
|
|
|
|
namespace "app.dapk.st.notifications"
|
|
|
|
}
|
|
|
|
|
2022-02-24 22:55:56 +01:00
|
|
|
dependencies {
|
2022-12-05 23:25:06 +01:00
|
|
|
implementation "chat-engine:chat-engine"
|
2022-04-04 21:47:05 +02:00
|
|
|
implementation project(":domains:android:work")
|
2022-02-24 22:55:56 +01:00
|
|
|
implementation project(':domains:android:push')
|
|
|
|
implementation project(":domains:android:core")
|
|
|
|
implementation project(":core")
|
|
|
|
implementation project(":domains:android:imageloader")
|
|
|
|
implementation project(":features:messenger")
|
2022-05-08 13:49:16 +02:00
|
|
|
implementation project(":features:navigator")
|
2022-02-24 22:55:56 +01:00
|
|
|
|
2022-12-11 13:49:48 +01:00
|
|
|
implementation libs.kotlin.serialization
|
2022-05-23 21:28:02 +02:00
|
|
|
|
|
|
|
kotlinTest(it)
|
2022-12-05 23:48:38 +01:00
|
|
|
testImplementation 'chat-engine:chat-engine-test'
|
2022-05-23 21:28:02 +02:00
|
|
|
androidImportFixturesWorkaround(project, project(":core"))
|
2022-05-29 17:10:00 +02:00
|
|
|
androidImportFixturesWorkaround(project, project(":domains:android:stub"))
|
2022-02-24 22:55:56 +01:00
|
|
|
}
|