Add new time zone related permissions to known set

Add new time zone related permissions to known set.
commit bede17c216815a849be0c43d5ce7daaf750a9fac added
some new permissions that should be added to the
android_manifest.xml reference file too to pass tests.

android.permission.UPDATE_TIME_ZONE_RULES
android.permission.TRIGGER_TIME_ZONE_RULES_CHECK

Bug: 31008728
Bug: 38207711
Test: CtsPermission2TestCases
Change-Id: Ied217f79e2057eca376a148b7f68597e57b8292d
diff --git a/tests/tests/permission2/res/raw/android_manifest.xml b/tests/tests/permission2/res/raw/android_manifest.xml
index b6b2f92..87119a6 100644
--- a/tests/tests/permission2/res/raw/android_manifest.xml
+++ b/tests/tests/permission2/res/raw/android_manifest.xml
@@ -2022,6 +2022,22 @@
     <permission android:name="android.permission.UPDATE_CONFIG"
                 android:protectionLevel="signature|privileged" />
 
+    <!-- Allows a time zone rule updater application to request
+         the system installs / uninstalls timezone rules.
+         <p>An application requesting this permission is responsible for
+         verifying the source and integrity of the update before passing
+         it off to the installer components.
+         @hide -->
+    <permission android:name="android.permission.UPDATE_TIME_ZONE_RULES"
+                android:protectionLevel="signature|privileged" />
+
+    <!-- Must be required by a time zone rule updater application,
+         to ensure that only the system can trigger it.
+         @hide -->
+    <permission android:name="android.permission.TRIGGER_TIME_ZONE_RULES_CHECK"
+                android:protectionLevel="signature" />
+    <uses-permission android:name="android.permission.TRIGGER_TIME_ZONE_RULES_CHECK"/>
+
     <!-- Allows the system to reset throttling in shortcut manager.
          @hide -->
     <permission android:name="android.permission.RESET_SHORTCUT_MANAGER_THROTTLING"