-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
37 lines (35 loc) · 1.13 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
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "CurrencyExchange"
include(":app:android")
include(":app:desktop")
include(":app:shared")
include(":common:coroutines-ktx")
include(":common:compose-ktx")
include(":common:viewmodel")
include(":common:domain")
include(":common:api:mindera:rest:ktor")
include(":common:api:mindera:rest:ktor:interceptors")
include(":features:currencyexchange:composables")
include(":features:currencyexchange:presentation")
include(":features:currencyexchange:domain")
include(":features:currencyexchange:data:remote:mindera:rest:ktor")
include(":features:currencyexchange:data:remote:mindera:rest:schema")
include(":features:currencyexchange:data")
include(":libraries:precompose")
include(":app:navigation")
include(":features:currencyexchange:data:remote:mindera:rest:sample")
include(":features:currencyexchange:di")