Enable SdkResourceGenerator for all Gradle Plugin projects

All of them use it, so lets set it up automatically.

Test: ./gradlew test
Change-Id: I81911adbd0ce0b9326e8f483d3ecddf67e602c4c
diff --git a/stableaidl/stableaidl-gradle-plugin/build.gradle b/stableaidl/stableaidl-gradle-plugin/build.gradle
index d6d1890..efce547 100644
--- a/stableaidl/stableaidl-gradle-plugin/build.gradle
+++ b/stableaidl/stableaidl-gradle-plugin/build.gradle
@@ -24,9 +24,9 @@
 import androidx.build.*
 
 plugins {
-    id 'AndroidXPlugin'
-    id 'kotlin'
-    id 'java-gradle-plugin'
+    id("AndroidXPlugin")
+    id("kotlin")
+    id("java-gradle-plugin")
 }
 
 apply from: "../../buildSrc/kotlin-dsl-dependency.gradle"
@@ -53,8 +53,6 @@
     testImplementation(libs.truth)
 }
 
-SdkResourceGenerator.generateForHostTest(project)
-
 gradlePlugin {
     plugins {
         stableAidl {