forked from LouisCAD/Splitties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
73 lines (67 loc) · 1.67 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
63
64
65
66
67
68
69
70
71
72
73
@file:Suppress("SpellCheckingInspection")
/*
* Copyright 2019 Louis Cognault Ayeva Derman. Use of this source code is governed by the Apache 2.0 license.
*/
arrayOf(
":activities",
":alertdialog",
":alertdialog-appcompat",
":alertdialog-appcompat-coroutines",
":appctx",
":arch-lifecycle",
":arch-room",
":bitflags",
":bundle",
":checkedlazy",
":collections",
":dimensions",
":exceptions",
":experimental",
":fragmentargs",
":fragments",
":initprovider",
":intents",
":lifecycle-coroutines",
":mainhandler",
":mainthread",
":material-colors",
":material-lists",
":permissions",
":preferences",
":resources",
":snackbar",
":stetho-init",
":systemservices",
":toast",
":typesaferecyclerview",
":views",
":views-coroutines",
":views-coroutines-material",
":views-appcompat",
":views-cardview",
":views-dsl",
":views-dsl-appcompat",
":views-dsl-constraintlayout",
":views-dsl-coordinatorlayout",
":views-dsl-ide-preview",
":views-dsl-material",
":views-dsl-recyclerview",
":views-material",
":views-recyclerview",
":views-selectable",
":views-selectable-appcompat",
":views-selectable-constraintlayout"
).forEach { include(":modules$it") }
arrayOf(
"android-base",
"android-base-with-views-dsl",
"android-appcompat",
"android-appcompat-with-views-dsl",
"android-material-components",
"android-material-components-with-views-dsl"
).forEach { include(":fun-packs:$it") }
arrayOf(
"android-app"
).forEach { include(":samples:$it") }
include(":tests")
enableFeaturePreview("GRADLE_METADATA")