AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 ~ SPDX-FileCopyrightText: 2021, microG Project Team 4 ~ SPDX-License-Identifier: Apache-2.0 5 --> 6 <manifest xmlns:android="http://schemas.android.com/apk/res/android"> 7 8 <application> 9 <service android:name="org.microg.gms.tapandpay.TapAndPayService" 10 android:exported="true"> 11 <intent-filter> 12 <action android:name="com.google.android.gms.tapandpay.service.BIND"/> 13 </intent-filter> 14 </service> 15 </application> 16 </manifest>