summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGanesh Deva <ganesh.deva_1@nxp.com>2020-07-22 19:11:53 +0530
committernxf24591 <nanjesh.s_1@nxp.com>2020-09-08 17:44:08 +0530
commit8d4ea4707842e0566a8dba8921d5a0d8a8cc37b5 (patch)
treec50a35c6c14a438f30f5fc083883a7144970ec07
parent422b35fc809e2ba908b6bbeee606ee61a62328eb (diff)
Add an exported flag in manifest
With b/150232615, we will need an explicit value set for the exported flag when intent filters are present, as the default behavior is changing for S+. This change adds the value reflecting the previous default to the manifest. These changes were made using an automated tool, the xml file may be reformatted slightly creating a larger diff. The only "real" change is the addition of "android:exported" to activities, services, and receivers that have one or more intent-filters.
-rwxr-xr-xAndroidManifest.xml14
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>