diff options
author | Dianne Hackborn <hackbod@android.com> | 2012-04-24 15:54:57 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2012-04-24 15:54:57 -0700 |
commit | c9aa09a5a16a3017dc597c6b4715106c8b72e2e7 (patch) | |
tree | d2fab8073548745b83097583c2b8a1c82e39f2b1 | |
parent | 966b12230f3947c4f1c2044d0e69e720a60b8706 (diff) | |
parent | 7d254dff8b89bd5b43a8d2f3fe533b092ebd5561 (diff) | |
download | packages_apps_packageinstaller-c9aa09a5a16a3017dc597c6b4715106c8b72e2e7.zip packages_apps_packageinstaller-c9aa09a5a16a3017dc597c6b4715106c8b72e2e7.tar.gz packages_apps_packageinstaller-c9aa09a5a16a3017dc597c6b4715106c8b72e2e7.tar.bz2 |
am 7d254dff: am 1430ad97: Merge "PackageInstaller : Don\'t restart on orientation change"
* commit '7d254dff8b89bd5b43a8d2f3fe533b092ebd5561':
PackageInstaller : Don't restart on orientation change
-rw-r--r-- | AndroidManifest.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index cde090d..847c219 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -14,7 +14,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" /> |