smalltalk-matrix/domains/android/push/build.gradle

19 lines
631 B
Groovy
Raw Normal View History

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