summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabriele M <moto.falcon.git@gmail.com>2017-02-18 17:17:08 +0100
committerDaniel Hillenbrand <daniel.hillenbrand@codeworkx.de>2017-02-26 08:42:44 +0000
commit32d2eda3561dc9c2c509a828423fe129cdd6ef05 (patch)
tree181c73dfe7f9ef139943ffe91b3539d0a35977b5
parent0467f54be72dbd1128aefa049d1203a1aedbc35e (diff)
downloadandroid_packages_apps_Snap-32d2eda3561dc9c2c509a828423fe129cdd6ef05.tar.gz
android_packages_apps_Snap-32d2eda3561dc9c2c509a828423fe129cdd6ef05.tar.bz2
android_packages_apps_Snap-32d2eda3561dc9c2c509a828423fe129cdd6ef05.zip
Allow to re-open Snap from recent menu
An <activity> with an <activity-alias> doesn't automatically set "exported" to "true" if only <activity-alias> has intent filters. As consequence, it's impossible to re-start <activity> from the recent applications menu. Explicitly set exported to true to fix this. Change-Id: Id9612d704e71b5fa8093462e893a964753d67d50
-rw-r--r--AndroidManifest.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 23dcf3902..59ca02906 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -46,6 +46,7 @@
android:name="com.android.camera.CameraActivity"
android:clearTaskOnLaunch="true"
android:configChanges="orientation|screenSize|keyboardHidden"
+ android:exported="true"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="portrait"