| // 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 = "core-playground" | |
| playground { | |
| setupPlayground("../..") | |
| selectProjectsFromAndroidX({ name -> | |
| if (name.contains("haptics")) return false // b/285039694 | |
| if (name.startsWith(":core")) return true | |
| return false | |
| }) | |
| } |