1<?xml version="1.0" encoding="utf-8"?> 2 3<manifest xmlns:android="http://schemas.android.com/apk/res/android" 4 package="com.android.se" 5 android:sharedUserId="android.uid.se"> 6 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/> 7 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/> 8 <application android:name=".SEApplication" 9 android:label="SecureElementApplication" 10 android:persistent="true" 11 android:directBootAware="true" 12 android:memtagMode="async"> 13 <service android:name=".SecureElementService" 14 android:visibleToInstantApps="true" 15 android:exported="true"> 16 <intent-filter> 17 <action android:name="android.se.omapi.ISecureElementService"/> 18 </intent-filter> 19 </service> 20 </application> 21</manifest> 22