summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshwini Oruganti <ashfall@google.com>2020-06-25 12:49:53 -0700
committerAshwini Oruganti <ashfall@google.com>2020-06-25 12:49:53 -0700
commit10256fd16755fe0ed433bef6de73c1aa24c0a4d7 (patch)
treefa03aa158f369af85fe6fe0fe8aee64936826d78
parentb630ecfb5297c3a6dca20fe36888659f8c1430d8 (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: I31afc59275ab7e0947fdf01a9f8670f63224f5a0
-rw-r--r--packages/EasterEgg/AndroidManifest.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/EasterEgg/AndroidManifest.xml b/packages/EasterEgg/AndroidManifest.xml
index 57c459b6f0fd..3d62af020627 100644
--- a/packages/EasterEgg/AndroidManifest.xml
+++ b/packages/EasterEgg/AndroidManifest.xml
@@ -84,6 +84,7 @@
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
android:icon="@drawable/stat_icon"
android:enabled="false"
+ android:exported="true"
android:label="@string/default_tile_name">
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE" />