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:41:33 +0000
commitf0b7ec653ee83a12b7dfb5abc2106cae925dac84 (patch)
treed587a9f75a460b67fde437f538cefb50c010281f
parentdc5be3ee684a1202f5ca2f80c8b77782e339c3cc (diff)
downloadandroid_packages_apps_Snap-f0b7ec653ee83a12b7dfb5abc2106cae925dac84.tar.gz
android_packages_apps_Snap-f0b7ec653ee83a12b7dfb5abc2106cae925dac84.tar.bz2
android_packages_apps_Snap-f0b7ec653ee83a12b7dfb5abc2106cae925dac84.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 57aedb10e..63b2f389b 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="singleTop"
android:screenOrientation="portrait"