-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
65 lines (52 loc) · 1.5 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
// Interesting feature settings-plugin. Set for all projects
//plugins {
// id("com.android.settings") version "8.2.2"
//}
//
//android {
// minSdk = 29
// compileSdk = 35
//}
pluginManagement {
includeBuild("build-logic")
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "aphirri-android"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":app")
include(":core:common")
include(":core:uikit")
include(":core:navigation")
include(":features:bottombar:bottombar-ui")
include(":features:home:home-api")
include(":features:home:home-impl")
include(":features:home:home-provider")
include(":features:home:home-ui")
include(":features:meetings:meetings-api")
include(":features:meetings:meetings-impl")
include(":features:meetings:meetings-provider")
include(":features:meetings:meetings-ui")
include(":features:auth:auth-api")
include(":features:auth:auth-impl")
include(":features:auth:auth-provider")
include(":features:auth:auth-ui")
include(":features:services:services-ui")
include(":features:storage:storage-ui")