-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
64 lines (61 loc) · 2.65 KB
/
settings.gradle
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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
versionCatalogs {
libs {
library('androidx-core', 'androidx.core:core-ktx:1.12.0')
library('androidx-lifecycle-runtime', 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2')
library('androidx-activity-compose', 'androidx.activity:activity-compose:1.8.0')
version('compose-compiler', '1.5.7')
version('androidx-compose-bom', '2024.02.02')
library('androidx-compose-bom', 'androidx.compose', 'compose-bom').versionRef('androidx-compose-bom')
library('androidx-compose-ui-ui', 'androidx.compose.ui', 'ui').withoutVersion()
library('androidx-compose-ui-ui-graphics', 'androidx.compose.ui', 'ui-graphics').withoutVersion()
library('androidx-compose-ui-ui-tooling-preview', 'androidx.compose.ui', 'ui-tooling-preview').withoutVersion()
library('androidx-compose-material3', 'androidx.compose.material3', 'material3').withoutVersion()
library('androidx-compose-material', 'androidx.compose.material', 'material').withoutVersion()
bundle(
'compose',
[
'androidx-compose-ui-ui',
'androidx-compose-ui-ui-graphics',
'androidx-compose-ui-ui-tooling-preview',
'androidx-compose-material3',
'androidx-compose-material',
]
)
version('decompose', '2.1.2')
library('decompose', 'com.arkivanov.decompose', 'decompose').versionRef('decompose')
library('decompose-extensions-compose-jetpack', 'com.arkivanov.decompose', 'extensions-compose-jetpack').versionRef('decompose')
bundle(
'decompose',
[
'decompose',
'decompose-extensions-compose-jetpack'
]
)
version('dagger', '2.48.1')
library('dagger-core', 'com.google.dagger', 'dagger').versionRef('dagger')
library('dagger-compiler', 'com.google.dagger', 'dagger-compiler').versionRef('dagger')
}
}
}
rootProject.name = "Mars Colony"
include ':app'
include ':ui'
include ':bottom-sheet'
include ':feature-root'
include ':feature-dashboard'
include ':feature-habitat'
include ':feature-power'
include ':shared-weather'