summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorPatrick Dubroy <dubroy@google.com>2010-09-02 18:33:09 -0700
committerPatrick Dubroy <dubroy@google.com>2010-09-03 15:25:52 -0700
commit362660b35aec989137b205ce8cb8eb945c19c1a3 (patch)
treeb4396186d44b505424fc3b06717295c50eccefba /AndroidManifest.xml
parenta379e13559be314fa9021638e5721df13a2f4ffb (diff)
downloadandroid_packages_apps_PackageInstaller-362660b35aec989137b205ce8cb8eb945c19c1a3.tar.gz
android_packages_apps_PackageInstaller-362660b35aec989137b205ce8cb8eb945c19c1a3.tar.bz2
android_packages_apps_PackageInstaller-362660b35aec989137b205ce8cb8eb945c19c1a3.zip
Check for activity info when uninstalling.
Also, switch to using standard fat title bar.
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml12
1 files changed, 4 insertions, 8 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index b78b3df7..217b95ed 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -11,8 +11,7 @@
<uses-permission android:name="android.permission.CLEAR_APP_USER_DATA" />
<application android:label="@string/app_name">
<activity android:name=".PackageInstallerActivity"
- android:configChanges="orientation|keyboardHidden"
- android:theme="@style/TallTitleBarTheme">
+ android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
@@ -22,12 +21,10 @@
</intent-filter>
</activity>
<activity android:name=".InstallAppProgress"
- android:configChanges="orientation|keyboardHidden"
- android:theme="@style/TallTitleBarTheme">
+ android:configChanges="orientation|keyboardHidden">
</activity>
<activity android:name=".UninstallerActivity"
- android:configChanges="orientation|keyboardHidden"
- android:theme="@style/TallTitleBarTheme">
+ android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.DELETE" />
@@ -36,8 +33,7 @@
</intent-filter>
</activity>
<activity android:name=".UninstallAppProgress"
- android:configChanges="orientation|keyboardHidden"
- android:theme="@style/TallTitleBarTheme">
+ android:configChanges="orientation|keyboardHidden">
</activity>
</application>
</manifest>