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)
downloadandroid_packages_apps_PackageInstaller-1430ad970bfc25bb951234cb0ea4085f758e88eb.tar.gz
android_packages_apps_PackageInstaller-1430ad970bfc25bb951234cb0ea4085f758e88eb.tar.bz2
android_packages_apps_PackageInstaller-1430ad970bfc25bb951234cb0ea4085f758e88eb.zip
Merge "PackageInstaller : Don't restart on orientation change"
-rw-r--r--AndroidManifest.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index af5fa762..a9ee767f 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" />