summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabriele M <moto.falcon.git@gmail.com>2017-02-18 17:17:08 +0100
committerArne Coucheron <arco68@gmail.com>2018-01-26 01:07:48 +0100
commit338926556da9322fa2d17054f8a9f11c0bd29e7f (patch)
tree2e576eb2f7a9afd97ac0a76d1d64fd6ea713e32e
parent7592bfa63749953cfca03b68a4c57e86e5a0a747 (diff)
downloadandroid_packages_apps_Snap-338926556da9322fa2d17054f8a9f11c0bd29e7f.tar.gz
android_packages_apps_Snap-338926556da9322fa2d17054f8a9f11c0bd29e7f.tar.bz2
android_packages_apps_Snap-338926556da9322fa2d17054f8a9f11c0bd29e7f.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
-rwxr-xr-xAndroidManifest.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 4906d14d3..3cce4ee3e 100755
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -44,6 +44,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"