[go: nahoru, domu]

blob: 6b23d6fe85fba5a2547f70bfecc8f5427c7cbfd2 [file] [log] [blame]
Alan Viverette63ba82e2022-04-25 11:24:03 -04001// see ../playground-common/README.md for details on how this works
2pluginManagement {
3 includeBuild "../playground-common/playground-plugin"
4}
5plugins {
6 id "playground"
7}
8
9rootProject.name = "appcompat-playground"
10
11playground {
12 setupPlayground("..")
13 selectProjectsFromAndroidX({ name ->
14 if (name.startsWith(":appcompat")) return true
15 if (name == ":internal-testutils-appcompat") return true
16 if (name == ":internal-testutils-runtime") return true
17 // Transitive dependencies of internal-testutils-appcompat
18 if (name.startsWith(":annotation:annotation-experimental")) return true
19 return false
20 })
21}