blob: 76d1e9aa9714abae97fc59fb67110b62d01b057b [file] [log] [blame]
// see ../playground-common/README.md for details on how this works
pluginManagement {
apply from: "../playground-common/configure-plugin-management.gradle", to: it
}
plugins {
id "playground"
}
rootProject.name = "appcompat-playground"
playground {
setupPlayground("..")
selectProjectsFromAndroidX({ name ->
if (name.startsWith(":appcompat")) return true
if (name == ":internal-testutils-appcompat") return true
if (name == ":internal-testutils-runtime") return true
// Transitive dependencies of internal-testutils-appcompat
if (name.startsWith(":annotation:annotation-experimental")) return true
return false
})
}