-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
settings.gradle.kts
62 lines (54 loc) · 1.23 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
@file:Suppress("UnstableApiUsage")
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
}
}
include(
":app",
":core:theme",
":core:resources",
":core:activity-actions",
":core:settings",
":core:shortcut",
":core:alterable-adaptive-icon",
":core:custom-tab-browser",
":feature:widget",
":feature:crash",
":feature:embedding-splits",
":basic",
":jvm-basic",
":eggs:Base",
":eggs:Gingerbread",
":eggs:Honeycomb",
":eggs:IceCreamSandwich",
":eggs:JellyBean",
":eggs:KitKat",
":eggs:Lollipop",
":eggs:Marshmallow",
":eggs:Nougat",
":eggs:Oreo",
":eggs:Pie",
":eggs:Q",
":eggs:R",
":eggs:S",
":eggs:Tiramisu",
":eggs:UpsideDownCake",
":eggs:VanillaIceCream",
":eggs:AndroidNext",
":eggs:RocketLauncher",
":script:compose-material-icons-generator",
":script:emoji-svg-xml-convertor",
)
rootProject.name = "Easter Eggs"