summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorSuchi Amalapurapu <asuchitra@google.com>2009-11-12 15:18:12 -0800
committerSuchi Amalapurapu <asuchitra@google.com>2009-11-12 15:18:12 -0800
commitea6db5d587151d708353f993feb30cc75ed36976 (patch)
tree8b4a3680cda95926ace94ede8bf3a8d96811891b /AndroidManifest.xml
parentf80cb7b8632fb2cab44838ee741b3e8fa4aa90b1 (diff)
downloadandroid_packages_apps_PackageInstaller-ea6db5d587151d708353f993feb30cc75ed36976.tar.gz
android_packages_apps_PackageInstaller-ea6db5d587151d708353f993feb30cc75ed36976.tar.bz2
android_packages_apps_PackageInstaller-ea6db5d587151d708353f993feb30cc75ed36976.zip
Ignore orientation changes when installing/uninstalling
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml12
1 files changed, 8 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 21131455..ab4562bc 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -7,7 +7,8 @@
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.CLEAR_APP_USER_DATA" />
<application android:label="@string/app_name">
- <activity android:name=".PackageInstallerActivity">
+ <activity android:name=".PackageInstallerActivity"
+ android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
@@ -16,9 +17,11 @@
<data android:mimeType="application/vnd.android.package-archive" />
</intent-filter>
</activity>
- <activity android:name=".InstallAppProgress">
+ <activity android:name=".InstallAppProgress"
+ android:configChanges="orientation|keyboardHidden">
</activity>
- <activity android:name=".UninstallerActivity">
+ <activity android:name=".UninstallerActivity"
+ android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.DELETE" />
@@ -26,7 +29,8 @@
<data android:scheme="package" />
</intent-filter>
</activity>
- <activity android:name=".UninstallAppProgress">
+ <activity android:name=".UninstallAppProgress"
+ android:configChanges="orientation|keyboardHidden">
</activity>
</application>
</manifest>