summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@android.com>2012-04-23 18:20:50 -0700
committerandroid code review <noreply-gerritcodereview@google.com>2012-04-23 18:20:51 -0700
commit1430ad970bfc25bb951234cb0ea4085f758e88eb (patch)
treeae43b0f6c30d3bab640f640d8e88b9d12093c477
parentf8298fc3d0c7f8307427428585773192d9692a50 (diff)
parentc477fcb8cb6b69429892722f3cddc8ec5f9b75db (diff)
downloadplatform_packages_apps_PackageInstaller-ics-plus-aosp.tar.gz
platform_packages_apps_PackageInstaller-ics-plus-aosp.tar.bz2
platform_packages_apps_PackageInstaller-ics-plus-aosp.zip
Merge "PackageInstaller : Don't restart on orientation change"android-sdk-adt_r20tools_r20ics-plus-aosp
-rw-r--r--AndroidManifest.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index af5fa7621..a9ee767fb 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -13,7 +13,7 @@
android:allowBackup="false"
android:theme="@android:style/Theme.Holo.DialogWhenLarge.NoActionBar">
<activity android:name=".PackageInstallerActivity"
- android:configChanges="orientation|keyboardHidden"
+ android:configChanges="orientation|keyboardHidden|screenSize"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
@@ -31,10 +31,10 @@
</intent-filter>
</activity>
<activity android:name=".InstallAppProgress"
- android:configChanges="orientation|keyboardHidden">
+ android:configChanges="orientation|keyboardHidden|screenSize">
</activity>
<activity android:name=".UninstallerActivity"
- android:configChanges="orientation|keyboardHidden"
+ android:configChanges="orientation|keyboardHidden|screenSize"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />