Mark the HingeAngleTestActivity as non-resizeable

The HingeAngleTestActivity has the tester exercise the device's hinge
which may cause it to attempt to resize the activity. Disable this so
the test's activity isn't reset.

Bug: 168837048
Test: Run CTS Verifier in emulator
Change-Id: If0d69b860c970f5156d2b6eb725c82658c8505a0
diff --git a/apps/CtsVerifier/AndroidManifest.xml b/apps/CtsVerifier/AndroidManifest.xml
index 9d858be..5b20031 100644
--- a/apps/CtsVerifier/AndroidManifest.xml
+++ b/apps/CtsVerifier/AndroidManifest.xml
@@ -3160,11 +3160,14 @@
 
         </activity>
 
-       <activity
-            android:name="com.android.cts.verifier.sensors.HingeAngleTestActivity"
-            android:label="@string/snsr_hinge_angle_test"
-                android:exported="true"
-            android:screenOrientation="nosensor" >
+        <!-- Set the HingeAngleTestActivity as not resizeable and with a max aspect ratio to prevent
+             the activity from restarting when the device folds -->
+       <activity android:name="com.android.cts.verifier.sensors.HingeAngleTestActivity"
+                 android:label="@string/snsr_hinge_angle_test"
+                 android:exported="true"
+                 android:screenOrientation="nosensor"
+                 android:resizeableActivity="false"
+                 android:maxAspectRatio="2.4">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />