forked from androidx/androidx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
25 lines (23 loc) · 890 Bytes
/
settings.gradle
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
// see ../playground-common/README.md for details on how this works
pluginManagement {
includeBuild "../playground-common/playground-plugin"
}
plugins {
id "playground"
}
rootProject.name = "core-playground"
playground {
setupPlayground("..")
selectProjectsFromAndroidX({ name ->
if (name.contains("haptics")) return false // b/285039694
if (name.startsWith(":core")) return true
if (name == ":internal-testutils-mockito") return true
if (name == ":internal-testutils-fonts") return true
if (name == ":internal-testutils-runtime") return true
if (name == ":internal-testutils-truth") return true
if (name == ":annotation:annotation-sampled") return true
if (name == ":test:screenshot:screenshot") return true
if (name == ":test:screenshot:screenshot-proto") return true
return false
})
}