forked from ReactiveCircus/FlowBinding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
54 lines (36 loc) · 1.87 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
rootProject.name = "FlowBinding"
include(":flowbinding-common")
include(":flowbinding-android")
includeProject(":flowbinding-android:fixtures", "flowbinding-android/fixtures")
include(":flowbinding-activity")
includeProject(":flowbinding-activity:fixtures", "flowbinding-activity/fixtures")
include(":flowbinding-appcompat")
includeProject(":flowbinding-appcompat:fixtures", "flowbinding-appcompat/fixtures")
include(":flowbinding-core")
includeProject(":flowbinding-core:fixtures", "flowbinding-core/fixtures")
include(":flowbinding-drawerlayout")
includeProject(":flowbinding-drawerlayout:fixtures", "flowbinding-drawerlayout/fixtures")
include(":flowbinding-lifecycle")
includeProject(":flowbinding-lifecycle:fixtures", "flowbinding-lifecycle/fixtures")
include(":flowbinding-material")
includeProject(":flowbinding-material:fixtures", "flowbinding-material/fixtures")
include(":flowbinding-navigation")
includeProject(":flowbinding-navigation:fixtures", "flowbinding-navigation/fixtures")
include(":flowbinding-preference")
includeProject(":flowbinding-preference:fixtures", "flowbinding-preference/fixtures")
include(":flowbinding-recyclerview")
includeProject(":flowbinding-recyclerview:fixtures", "flowbinding-recyclerview/fixtures")
include(":flowbinding-swiperefreshlayout")
includeProject(":flowbinding-swiperefreshlayout:fixtures", "flowbinding-swiperefreshlayout/fixtures")
include(":flowbinding-viewpager")
includeProject(":flowbinding-viewpager:fixtures", "flowbinding-viewpager/fixtures")
include(":flowbinding-viewpager2")
includeProject(":flowbinding-viewpager2:fixtures", "flowbinding-viewpager2/fixtures")
include(":testing-infra")
include(":lint-rules")
fun includeProject(name: String, filePath: String) {
include(name)
project(name).projectDir = File(filePath)
}
// apply build cache configuration
apply(from = File(settingsDir, "gradle/buildCacheSettings.gradle"))