Create project structure and base modules

This commit is contained in:
Shcherbatykh Oleg
2026-02-10 13:08:59 +03:00
parent 6e1029ab5b
commit 073c80e2e3
78 changed files with 1376 additions and 0 deletions

32
settings.gradle.kts Normal file
View File

@@ -0,0 +1,32 @@
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories(fun RepositoryHandler.() {
google()
mavenCentral()
})
}
rootProject.name = "TSUDesk"
include(":app")
include(":core:common")
include(":core:ui")
include(":core:network")
include(":core:database")
include(":feature:schedule")
include(":feature:news")
include(":feature:progress")