diff options
author | Ashwini Oruganti <ashfall@google.com> | 2020-03-10 15:29:39 -0700 |
---|---|---|
committer | Ashwini Oruganti <ashfall@google.com> | 2020-03-10 15:29:39 -0700 |
commit | af5698f368fd5521e8044971fd3a2745abdd64ae (patch) | |
tree | 2a348bc16de852bef8bf772a140bc6e29d1acfcc | |
parent | 72fcef13fa57edf60775a98995a60aa92e5f48fd (diff) |
EasterEgg: 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.
Bug: 150232615
Test: TH
Change-Id: I5335bc84723a326932c6b002c954203398dde088
-rw-r--r-- | packages/EasterEgg/AndroidManifest.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/EasterEgg/AndroidManifest.xml b/packages/EasterEgg/AndroidManifest.xml index 7f76a4529963..2494701071f5 100644 --- a/packages/EasterEgg/AndroidManifest.xml +++ b/packages/EasterEgg/AndroidManifest.xml @@ -12,7 +12,8 @@ <activity android:name=".quares.QuaresActivity" android:icon="@drawable/q_icon" android:label="@string/q_egg_name" - android:theme="@style/QuaresTheme"> + android:theme="@style/QuaresTheme" + android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> @@ -26,7 +27,8 @@ android:configChanges="orientation|keyboardHidden|screenSize|uiMode" android:icon="@drawable/p_icon" android:label="@string/p_egg_name" - android:theme="@style/AppTheme"> + android:theme="@style/AppTheme" + android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> |