summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2011-01-09 13:48:13 -0800
committerKenny Root <kroot@google.com>2011-01-09 13:48:16 -0800
commit2244205c4fdda49f0ff6f2e16f4cbb6678e20c48 (patch)
treec99f76d02c5889f4dec6771d811d27529c9976a0
parent944ddb98d7d93ad4657765dad79d52c7db87635e (diff)
downloadandroid_packages_apps_PackageInstaller-2244205c4fdda49f0ff6f2e16f4cbb6678e20c48.tar.gz
android_packages_apps_PackageInstaller-2244205c4fdda49f0ff6f2e16f4cbb6678e20c48.tar.bz2
android_packages_apps_PackageInstaller-2244205c4fdda49f0ff6f2e16f4cbb6678e20c48.zip
Do not show package installer in recent apps
Due to confusion between "running" apps and "recent" apps, some users thought the package installer was continuously running and trying to reinstall applications. Removing the package installer activity from display in recent apps will clear up any confusion. Bug: 3179073 Change-Id: I96b8fecb2810e8d8d843db5d032e9ddfd38fbc8f
-rw-r--r--AndroidManifest.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 217b95ed..a514af66 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -11,7 +11,8 @@
<uses-permission android:name="android.permission.CLEAR_APP_USER_DATA" />
<application android:label="@string/app_name">
<activity android:name=".PackageInstallerActivity"
- android:configChanges="orientation|keyboardHidden">
+ android:configChanges="orientation|keyboardHidden"
+ android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
@@ -24,7 +25,8 @@
android:configChanges="orientation|keyboardHidden">
</activity>
<activity android:name=".UninstallerActivity"
- android:configChanges="orientation|keyboardHidden">
+ android:configChanges="orientation|keyboardHidden"
+ android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.DELETE" />