Cooking-Corner-KMP

Форк
0
/
settings.gradle.kts 
66 строк · 2.0 Кб
1
rootProject.name = "CookingCorner"
2
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
3

4
pluginManagement {
5
    repositories {
6
        google {
7
            mavenContent {
8
                includeGroupAndSubgroups("androidx")
9
                includeGroupAndSubgroups("com.android")
10
                includeGroupAndSubgroups("com.google")
11
            }
12
        }
13
        mavenCentral()
14
        gradlePluginPortal()
15
        maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
16
        maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental")
17
        maven("https://androidx.dev/storage/compose-compiler/repository")
18
        maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev")
19
    }
20
}
21

22
dependencyResolutionManagement {
23
    repositories {
24
        google {
25
            mavenContent {
26
                includeGroupAndSubgroups("androidx")
27
                includeGroupAndSubgroups("com.android")
28
                includeGroupAndSubgroups("com.google")
29
            }
30
        }
31
        mavenCentral()
32
        maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
33
        maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental")
34
        maven("https://androidx.dev/storage/compose-compiler/repository")
35
        maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev")
36
    }
37
}
38

39
include(":composeApp")
40

41
include(":core:common")
42
include(":core:ui")
43
include(":core:component")
44
include(":core:utils")
45

46
include(":domain:auth")
47
include(":domain:global_event")
48
include(":domain:snackbar")
49
include(":domain:recipe")
50
include(":domain:tag")
51
include(":domain:category")
52

53
include(":data")
54

55
include(":feature:splash")
56
include(":feature:auth")
57
include(":feature:main:splash")
58
include(":feature:main:root")
59
include(":feature:main:content")
60
include(":feature:main:home")
61
include(":feature:main:search")
62
include(":feature:main:profile")
63
include(":feature:main:recipe")
64
include(":feature:main:generate")
65
include(":feature:main:recipe_editor")
66
include(":feature:main:profile_editor")
67

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.