summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanesh Mondegarian <daneshm90@gmail.com>2012-04-10 10:31:18 -0400
committerDanesh Mondegarian <daneshm90@gmail.com>2012-04-10 14:48:43 -0400
commitc477fcb8cb6b69429892722f3cddc8ec5f9b75db (patch)
treeae43b0f6c30d3bab640f640d8e88b9d12093c477
parentf8298fc3d0c7f8307427428585773192d9692a50 (diff)
downloadandroid_packages_apps_PackageInstaller-c477fcb8cb6b69429892722f3cddc8ec5f9b75db.tar.gz
android_packages_apps_PackageInstaller-c477fcb8cb6b69429892722f3cddc8ec5f9b75db.tar.bz2
android_packages_apps_PackageInstaller-c477fcb8cb6b69429892722f3cddc8ec5f9b75db.zip
PackageInstaller : Don't restart on orientation change
Currently an orientation change restarts the installation. This is due to screenSize being required on anything API level 13 or higher Change-Id: I730ee7bde024f41cfa6bc859b1665ebb5ae7e332
-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" />