nfc(gts): Disable exit frame for test_autotransact_multiple_select

Still need to debug what is going wrong here, but we don't need to exercise exit frame
functionality here.

Bug: 437293031
Test: atest GtsInteractiveNfcHceMultiDeviceTestCases
Flag: EXEMPT bug fix
Change-Id: Ic9daffc4cd2a480fba38abdcee96dcbdae6d91f0
diff --git a/NfcNci/testutils/src/com/android/nfc/emulator/AndroidManifest.xml b/NfcNci/testutils/src/com/android/nfc/emulator/AndroidManifest.xml
index d36f846..e09d0c3 100644
--- a/NfcNci/testutils/src/com/android/nfc/emulator/AndroidManifest.xml
+++ b/NfcNci/testutils/src/com/android/nfc/emulator/AndroidManifest.xml
@@ -203,7 +203,7 @@
                 <action android:name="android.nfc.cardemulation.action.HOST_APDU_SERVICE"/>
                 <category android:name="android.intent.category.DEFAULT"/>
             </intent-filter>
-            <meta-data android:name="android.nfc.cardemulation.host_apdu_service" android:resource="@xml/payment_aid_list_1"/>
+            <meta-data android:name="android.nfc.cardemulation.host_apdu_service" android:resource="@xml/payment_aid_list_no_index_reset"/>
         </service>
         <service android:name="com.android.nfc.service.OffHostService" android:exported="true"
             android:permission="android.permission.BIND_NFC_SERVICE"
diff --git a/NfcNci/testutils/src/com/android/nfc/emulator/res/values/strings.xml b/NfcNci/testutils/src/com/android/nfc/emulator/res/values/strings.xml
index 862e7a7..0612ef5 100644
--- a/NfcNci/testutils/src/com/android/nfc/emulator/res/values/strings.xml
+++ b/NfcNci/testutils/src/com/android/nfc/emulator/res/values/strings.xml
@@ -19,6 +19,7 @@
     <string name="transportService2">Transport Service #2</string>
     <string name="paymentService1">Payment Service #1</string>
     <string name="paymentService2">Payment Service #2</string>
+    <string name="paymentServiceNoIndexReset">Payment Service No Index Reset</string>
     <string name="offhostService">Offhost Service</string>
     <string name="accessService">Access Service</string>
     <string name="screenOffPaymentService">Screen Off Payment Service</string>
diff --git a/NfcNci/testutils/src/com/android/nfc/emulator/res/xml/payment_aid_list_no_index_reset.xml b/NfcNci/testutils/src/com/android/nfc/emulator/res/xml/payment_aid_list_no_index_reset.xml
new file mode 100644
index 0000000..5927750
--- /dev/null
+++ b/NfcNci/testutils/src/com/android/nfc/emulator/res/xml/payment_aid_list_no_index_reset.xml
@@ -0,0 +1,13 @@
+<host-apdu-service xmlns:android="http://schemas.android.com/apk/res/android"
+    android:description="@string/paymentServiceNoIndexReset"
+    android:apduServiceBanner="@drawable/nfc_hce_banner">
+    <aid-group android:description="@string/paymentServiceNoIndexReset" android:category="payment">
+        <aid-filter android:name="325041592E5359532E4444463031"
+            android:description="@string/ppse"/>
+        <aid-filter android:name="A0000000041010"
+            android:description="@string/mastercard"/>
+    </aid-group>
+    <!--- This is a polling loop pattern filter with a "?" to avoid framework
+          from converting to exit frame -->
+    <polling-loop-pattern-filter android:name="41fbc7?b9" android:autoTransact="true"/>
+</host-apdu-service>