Clean up project references in build.gradle files

This makes sure that " are always used instead of ' to make
the style consistent across all of the build files.

Test: ./gradlew bOS --dry-run
Change-Id: I12fa5cda7e2f920a138dfca241ddd9253193d05b
diff --git a/appsearch/appsearch-debug-view/build.gradle b/appsearch/appsearch-debug-view/build.gradle
index 5d509bc..a678382 100644
--- a/appsearch/appsearch-debug-view/build.gradle
+++ b/appsearch/appsearch-debug-view/build.gradle
@@ -35,9 +35,9 @@
 
 dependencies {
     api(libs.jspecify)
-    implementation project(':appsearch:appsearch')
-    implementation project(':appsearch:appsearch-local-storage')
-    implementation project(':appsearch:appsearch-platform-storage')
+    implementation project(":appsearch:appsearch")
+    implementation project(":appsearch:appsearch-local-storage")
+    implementation project(":appsearch:appsearch-platform-storage")
     implementation('androidx.concurrent:concurrent-futures:1.0.0')
     implementation('androidx.constraintlayout:constraintlayout:2.2.0-beta01')
     implementation('androidx.core:core:1.5.0')