mirror of
https://github.com/ouchadam/small-talk.git
synced 2025-01-07 23:53:00 +01:00
50914aaeb4
- the notification module was pulling in firebase for an annotation import, which in turn pulled in the .aar manifest entries and services etc, fixed by removing the unneeded dependency
23 lines
936 B
Groovy
23 lines
936 B
Groovy
applyAndroidLibraryModule(project)
|
|
|
|
dependencies {
|
|
implementation project(":matrix:services:push")
|
|
implementation project(":matrix:services:sync")
|
|
implementation project(':domains:store')
|
|
implementation project(":domains:android:work")
|
|
implementation project(':domains:android:push')
|
|
implementation project(":domains:android:core")
|
|
implementation project(":core")
|
|
implementation project(":domains:android:imageloader")
|
|
implementation project(":features:messenger")
|
|
implementation project(":features:navigator")
|
|
|
|
implementation Dependencies.mavenCentral.kotlinSerializationJson
|
|
|
|
kotlinTest(it)
|
|
|
|
androidImportFixturesWorkaround(project, project(":core"))
|
|
androidImportFixturesWorkaround(project, project(":matrix:common"))
|
|
androidImportFixturesWorkaround(project, project(":matrix:services:sync"))
|
|
androidImportFixturesWorkaround(project, project(":domains:android:stub"))
|
|
} |