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.QUERY_ALL_PACKAGES"/>
7    <application android:name=".SEApplication"
8         android:label="SecureElementApplication"
9         android:persistent="true"
10         android:directBootAware="true">
11        <service android:name=".SecureElementService"
12             android:visibleToInstantApps="true"
13             android:exported="true">
14            <intent-filter>
15                <action android:name="android.se.omapi.ISecureElementService"/>
16            </intent-filter>
17        </service>
18    </application>
19</manifest>
20