forked from hushenghao/AndroidEasterEggs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
53 lines (47 loc) · 1.03 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
@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",
":theme",
":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",
":script:compose-material-icons-generator",
":script:emoji-svg-xml-convertor",
)
rootProject.name = "Easter Eggs"