Consolidate defaults for hostside network tests apps.

For now, only share a couple of statements (min_sdk_version and
platform_apis). More will be added later.

Also, remove the test_suites stanzas everywhere. These are not
relevant for test apps because the APKs will be pulled in by
the data: stanzas anyway.

Bug: 365191921
Test: atest CtsHostsideNetworkTests
Change-Id: If510519b3bdd6ab27c1923bae523cddb694e0ecc
diff --git a/tests/cts/hostside/app/Android.bp b/tests/cts/hostside/app/Android.bp
index a6a1b76..c1b364c 100644
--- a/tests/cts/hostside/app/Android.bp
+++ b/tests/cts/hostside/app/Android.bp
@@ -21,7 +21,6 @@
 
 java_defaults {
     name: "CtsHostsideNetworkTestsAppDefaults",
-    platform_apis: true,
     static_libs: [
         "CtsHostsideNetworkTestsAidl",
         "androidx.test.ext.junit",
@@ -39,12 +38,6 @@
     srcs: [
         "src/**/*.java",
     ],
-    // Tag this module as a cts test artifact
-    test_suites: [
-        "general-tests",
-        "sts",
-    ],
-    min_sdk_version: "30",
 }
 
 android_test_helper_app {
@@ -53,6 +46,7 @@
         "cts_support_defaults",
         "framework-connectivity-test-defaults",
         "CtsHostsideNetworkTestsAppDefaults",
+        "CtsHostsideNetworkTestsAllAppDefaults",
     ],
 }
 
@@ -62,6 +56,7 @@
         "cts_support_defaults",
         "framework-connectivity-test-defaults",
         "CtsHostsideNetworkTestsAppDefaults",
+        "CtsHostsideNetworkTestsAllAppDefaults",
         "ConnectivityNextEnableDefaults",
     ],
 }