This commit is contained in:
2026-02-27 12:50:54 +03:00
commit c6c8897cb4
105 changed files with 2935 additions and 0 deletions

36
settings.gradle.kts Normal file
View File

@@ -0,0 +1,36 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "TestProgect"
include(
":app",
":testUtils",
":style",
":presentation",
":data",
":domain:domain",
":domain:domain_impl",
// features:
// TODO
// auth
// "feature:auth:contract",
// "feature:auth:contract_ui",
// "feature:auth:data",
// "feature:auth:domain",
// "feature:auth:presentation",
//
//
)