summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2011-08-09 19:35:56 -0700
committerDianne Hackborn <hackbod@google.com>2011-08-10 17:30:19 -0700
commit9e9721266feafdf16786b94f6fac4c06220cd422 (patch)
tree9f3de81d278b82453b86a96e84fdcbed49a780f4 /AndroidManifest.xml
parent315ced0cc2ac2f654d2aea3ee78bf9e289c5389d (diff)
downloadandroid_packages_apps_PackageInstaller-9e9721266feafdf16786b94f6fac4c06220cd422.tar.gz
android_packages_apps_PackageInstaller-9e9721266feafdf16786b94f6fac4c06220cd422.tar.bz2
android_packages_apps_PackageInstaller-9e9721266feafdf16786b94f6fac4c06220cd422.zip
Implement new extended install/uninstall options.
Change-Id: I60374f937ca3ccf454480b196a7eb4e36d67fe86
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index a24b0e1f..a0fc6cd6 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -17,11 +17,18 @@
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
+ <action android:name="android.intent.action.INSTALL_PACKAGE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="content" />
<data android:scheme="file" />
<data android:mimeType="application/vnd.android.package-archive" />
</intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.INSTALL_PACKAGE" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:scheme="content" />
+ <data android:scheme="file" />
+ </intent-filter>
</activity>
<activity android:name=".InstallAppProgress"
android:configChanges="orientation|keyboardHidden">
@@ -32,6 +39,7 @@
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.DELETE" />
+ <action android:name="android.intent.action.UNINSTALL_PACKAGE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="package" />
</intent-filter>
@@ -39,5 +47,13 @@
<activity android:name=".UninstallAppProgress"
android:configChanges="orientation|keyboardHidden">
</activity>
+ <!--
+ <receiver android:name=".RemoveReceiver">
+ <intent-filter>
+ <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
+ <data android:scheme="package" />
+ </intent-filter>
+ </receiver>
+ -->
</application>
</manifest>