Fix playground build

Bump snapshot to target new compose version

Add missing ToT annotation-experimental dependency to room. Note that
annotation-experimental-lint is not published to ci.android.com yet, so
we must also include it and its integration-tests.

Test: cd biometric && ./gradlew bOS
Test: cd compose/compiler && ./gradlew bOS
Test: cd room && ./gradlew bOS
Change-Id: I1a3dc9feb97e093c2dbfc4eefff05d2c4a8a288b
diff --git a/playground-common/playground.properties b/playground-common/playground.properties
index 1df32cc..417bc7e 100644
--- a/playground-common/playground.properties
+++ b/playground-common/playground.properties
@@ -28,7 +28,7 @@
 androidx.enableDocumentation=false
 # Disable coverage
 androidx.coverageEnabled=false
-androidx.playground.snapshotBuildId=7028110
+androidx.playground.snapshotBuildId=7072286
 androidx.playground.metalavaBuildId=6990868
 androidx.playground.dokkaBuildId=6915080
 androidx.studio.type=playground
diff --git a/room/settings.gradle b/room/settings.gradle
index 6b6675b..0f37698 100644
--- a/room/settings.gradle
+++ b/room/settings.gradle
@@ -21,6 +21,9 @@
 selectProjectsFromAndroidX({ name ->
     if (name.startsWith(":room")) return true
     if (name.startsWith(":sqlite") && !name.contains("inspection")) return true
+    if (name == ":annotation:annotation-experimental") return true
+    if (name == ":annotation:annotation-experimental-lint") return true
+    if (name == ":annotation:annotation-experimental-lint-integration-tests") return true
     if (name == ":internal-testutils-truth") return true
     return false
 })