-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle.kts
77 lines (65 loc) · 2.09 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
66
67
68
69
70
71
72
73
74
75
76
77
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
includeBuild("build-logic")
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
// https://stackoverflow.com/a/75032841
@Suppress("UnstableApiUsage")
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
@Suppress("UnstableApiUsage")
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Grodno-Roads"
include(":app:android")
include(":kmp:compose:common-ui")
include(":kmp:compose:foundation:core")
include(":kmp:compose:foundation:preview")
include(":kmp:compose:foundation:theme")
include(":kmp:compose:foundation:uikit")
include(":kmp:compose:foundation:icons")
include(":kmp:compose:location-requester")
include(":kmp:compose:maps-compose")
include(":kmp:compose:resources")
include(":kmp:compose:snackbar")
include(":kmp:features:root")
include(":kmp:features:intro")
include(":kmp:features:mainflow")
include(":kmp:features:guidance")
include(":kmp:features:eventReporting")
include(":kmp:features:specialEventReminder")
include(":kmp:features:quickSettings")
include(":kmp:features:tabs")
include(":kmp:features:appSettings")
include(":kmp:features:settings:alerts")
include(":kmp:features:settings:appearance")
include(":kmp:features:settings:debugTools")
include(":kmp:features:settings:changelog")
include(":kmp:features:settings:faq")
include(":kmp:features:settings:map")
include(":kmp:libraries:datastore")
include(":kmp:libraries:extensions")
include(":kmp:libraries:location")
include(":kmp:libraries:logger")
include(":kmp:shared:audioplayer")
include(":kmp:shared:analytics")
include(":kmp:shared:components")
include(":kmp:shared:crashlytics")
include(":kmp:shared:formatter")
include(":kmp:shared:geolocation")
include(":kmp:shared:models")
include(":kmp:shared:persistent")
include(":kmp:shared:resources")