diff options
author | Ashwini Oruganti <ashfall@google.com> | 2020-05-29 12:43:49 -0700 |
---|---|---|
committer | Ashwini Oruganti <ashfall@google.com> | 2020-05-29 19:51:27 +0000 |
commit | 02f8c0f5ef9f3be88f17acd48730ec82787d3aeb (patch) | |
tree | 1057740d6b8de9ba35c60bf08d83b94f86949076 /packages/Shell/tests | |
parent | ec04b3de824278af9a214e3714e3b0d7fd5b05d8 (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 future versions. 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.
Bug: 150232615
Test: TH
Exempt-From-Owner-Approval: mechanical refactoring
Change-Id: Ic2a2b9ee1c9bae64690691a95b885f4b69cb21f8
Merged-In: Ic2a2b9ee1c9bae64690691a95b885f4b69cb21f8
Diffstat (limited to 'packages/Shell/tests')
-rw-r--r-- | packages/Shell/tests/AndroidManifest.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/Shell/tests/AndroidManifest.xml b/packages/Shell/tests/AndroidManifest.xml index e845ef95b28e..23877fd7a66a 100644 --- a/packages/Shell/tests/AndroidManifest.xml +++ b/packages/Shell/tests/AndroidManifest.xml @@ -27,6 +27,7 @@ android:label="ActionSendMultipleConsumer" android:theme="@android:style/Theme.NoDisplay" android:noHistory="true" + android:exported="true" android:excludeFromRecents="true"> <intent-filter> <action android:name="android.intent.action.SEND_MULTIPLE" /> |