19 lines
604 B
Groovy
Raw Normal View History

2022-02-24 21:55:56 +00:00
applyAndroidLibraryModule(project)
2022-08-18 19:42:25 +01:00
apply plugin: "org.jetbrains.kotlin.plugin.serialization"
2022-02-24 21:55:56 +00:00
dependencies {
implementation "chat-engine:chat-engine"
2022-02-24 21:55:56 +00:00
implementation project(':core')
2022-08-18 19:42:25 +01:00
implementation project(':domains:store')
implementation project(':domains:android:core')
firebase(it, "messaging")
2022-08-18 19:42:25 +01:00
implementation Dependencies.mavenCentral.kotlinSerializationJson
2022-08-17 18:29:37 +01:00
implementation Dependencies.jitPack.unifiedPush
2022-11-03 13:44:01 +00:00
kotlinTest(it)
androidImportFixturesWorkaround(project, project(":core"))
androidImportFixturesWorkaround(project, project(":domains:android:stub"))
2022-02-24 21:55:56 +00:00
}