Shelter/app/src/main/res/xml/payment_stub.xml
Peter Cai 06b89a9534 feat: NFC payment service stub
This commits adds a NFC payment service stub in the main profile that
can be enabled on-demand. This is intended to work around a bug in AOSP
where if no payment app is present in the main profile, one cannot even
choose a payment app from the work profile. The stub simply shows up in
the main profile to enable the Settings menu for NFC payment services.
2023-11-12 15:51:03 -05:00

11 lines
456 B
XML

<?xml version="1.0" encoding="utf-8"?>
<host-apdu-service
xmlns:android="http://schemas.android.com/apk/res/android"
android:description="@string/payment_stub_description"
android:requireDeviceUnlock="false">
<aid-group android:description="@string/payment_stub_description"
android:category="payment">
<!-- This is not a real AID -->
<aid-filter android:name="F0010203040506"/>
</aid-group>
</host-apdu-service>