blob: 634a42631b69ef71361bf386c9f4c5a993de7d9d [file] [log] [blame]
// 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.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.startsWith(":annotation:annotation-experimental")) 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
})
}