Exclude Charging Constraints test, if “android.hardware.type.automotive” is declared.

com.android.cts.verifier.jobscheduler.ChargingConstraintTestActivity relevant to unplugged state.
But some automotive devices are always on power state and don't support battery, differing from mobile device.
Above test cannot be run on the device that doesn't include unplugged state.

This patch adds “android.hardware.type.automotive” as a test excluded features to above test.

Bug:68964840

Change-Id: If3b1f4ffb1191401b3d386aab4db6531f292b2fe
Signed-off-by: Bing Deng <bing.deng@intel.com>
diff --git a/apps/CtsVerifier/AndroidManifest.xml b/apps/CtsVerifier/AndroidManifest.xml
index 730435a..6a160d0 100644
--- a/apps/CtsVerifier/AndroidManifest.xml
+++ b/apps/CtsVerifier/AndroidManifest.xml
@@ -2641,7 +2641,7 @@
             </intent-filter>
             <meta-data android:name="test_category" android:value="@string/test_category_jobscheduler" />
             <meta-data android:name="test_excluded_features"
-                    android:value="android.hardware.type.television:android.software.leanback" />
+                    android:value="android.hardware.type.television:android.software.leanback:android.hardware.type.automotive" />
         </activity>
 
         <activity android:name=".jobscheduler.ConnectivityConstraintTestActivity" android:label="@string/js_connectivity_test">