diff options
-rwxr-xr-x | AndroidManifest.xml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 846db3a..e834d82 100755 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,13 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> + <manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="com.android.se" - android:sharedUserId="android.uid.se"> + package="com.android.se" + android:sharedUserId="android.uid.se"> <application android:name=".SEApplication" - android:label="SecureElementApplication" - android:persistent="true" - android:directBootAware="true"> + android:label="SecureElementApplication" + android:persistent="true" + android:directBootAware="true"> <service android:name=".SecureElementService" - android:visibleToInstantApps="true"> + android:visibleToInstantApps="true" + android:exported="true"> <intent-filter> <action android:name="android.se.omapi.ISecureElementService"/> </intent-filter> |