26 lines
1.2 KiB
Groovy
26 lines
1.2 KiB
Groovy
applyAndroidComposeLibraryModule(project)
|
|
apply plugin: 'kotlin-parcelize'
|
|
|
|
dependencies {
|
|
implementation project(":matrix:services:sync")
|
|
implementation project(":matrix:services:message")
|
|
implementation project(":matrix:services:crypto")
|
|
implementation project(":matrix:services:room")
|
|
implementation project(":domains:android:compose-core")
|
|
implementation project(":domains:android:viewmodel")
|
|
implementation project(":domains:store")
|
|
implementation project(":core")
|
|
implementation project(":features:navigator")
|
|
implementation project(":design-library")
|
|
implementation Dependencies.mavenCentral.coil
|
|
|
|
kotlinTest(it)
|
|
|
|
androidImportFixturesWorkaround(project, project(":matrix:services:sync"))
|
|
androidImportFixturesWorkaround(project, project(":matrix:services:message"))
|
|
androidImportFixturesWorkaround(project, project(":matrix:common"))
|
|
androidImportFixturesWorkaround(project, project(":core"))
|
|
androidImportFixturesWorkaround(project, project(":domains:store"))
|
|
androidImportFixturesWorkaround(project, project(":domains:android:viewmodel"))
|
|
androidImportFixturesWorkaround(project, project(":domains:android:stub"))
|
|
} |