2022-02-24 22:55:56 +01:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
apply from: "dependencies.gradle"
|
|
|
|
repositories {
|
|
|
|
Dependencies._repositories.call(it)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rootProject.name = "SmallTalk"
|
|
|
|
include ':app'
|
|
|
|
|
|
|
|
include ':design-library'
|
|
|
|
|
|
|
|
include ':features:directory'
|
|
|
|
include ':features:login'
|
|
|
|
include ':features:home'
|
|
|
|
include ':features:settings'
|
|
|
|
include ':features:profile'
|
|
|
|
include ':features:notifications'
|
|
|
|
include ':features:messenger'
|
|
|
|
include ':features:navigator'
|
|
|
|
include ':features:verification'
|
2022-05-29 20:53:45 +02:00
|
|
|
include ':features:share-entry'
|
2022-02-24 22:55:56 +01:00
|
|
|
|
2022-03-06 15:22:32 +01:00
|
|
|
include ':domains:android:stub'
|
2022-02-24 22:55:56 +01:00
|
|
|
include ':domains:android:core'
|
2022-06-11 15:10:17 +02:00
|
|
|
include ':domains:android:compose-core'
|
2022-02-24 22:55:56 +01:00
|
|
|
include ':domains:android:imageloader'
|
|
|
|
include ':domains:android:work'
|
|
|
|
include ':domains:android:tracking'
|
|
|
|
include ':domains:android:push'
|
2022-03-05 19:53:59 +01:00
|
|
|
include ':domains:android:viewmodel-stub'
|
|
|
|
include ':domains:android:viewmodel'
|
2022-02-24 22:55:56 +01:00
|
|
|
include ':domains:store'
|
|
|
|
include ':domains:olm-stub'
|
|
|
|
include ':domains:olm'
|
|
|
|
|
2022-08-31 18:44:17 +02:00
|
|
|
include ':domains:firebase:crashlytics'
|
|
|
|
include ':domains:firebase:crashlytics-noop'
|
|
|
|
include ':domains:firebase:messaging'
|
|
|
|
include ':domains:firebase:messaging-noop'
|
|
|
|
|
2022-02-24 22:55:56 +01:00
|
|
|
include ':matrix:matrix'
|
|
|
|
include ':matrix:common'
|
|
|
|
include ':matrix:matrix-http'
|
|
|
|
include ':matrix:matrix-http-ktor'
|
|
|
|
include ':matrix:services:auth'
|
|
|
|
include ':matrix:services:sync'
|
|
|
|
include ':matrix:services:room'
|
|
|
|
include ':matrix:services:push'
|
|
|
|
include ':matrix:services:message'
|
|
|
|
include ':matrix:services:device'
|
|
|
|
include ':matrix:services:crypto'
|
|
|
|
include ':matrix:services:profile'
|
|
|
|
|
|
|
|
include ':core'
|
|
|
|
|
|
|
|
include ':test-harness'
|