summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2012-09-19 12:43:09 -0700
committerDianne Hackborn <hackbod@google.com>2012-09-19 12:43:09 -0700
commitaba0bed7a4f6301c6e3067fc799d8ef47aaca0b2 (patch)
tree55ac3c3a5276feafe8911522961ad0148b8a8607 /AndroidManifest.xml
parentbe38912262624b9c622d4baded4085b4b3350613 (diff)
downloadandroid_packages_apps_PackageInstaller-aba0bed7a4f6301c6e3067fc799d8ef47aaca0b2.tar.gz
android_packages_apps_PackageInstaller-aba0bed7a4f6301c6e3067fc799d8ef47aaca0b2.tar.bz2
android_packages_apps_PackageInstaller-aba0bed7a4f6301c6e3067fc799d8ef47aaca0b2.zip
Allow side-loading of apps from other users.
This will allow applications to do the desired bypass of downloading and re-installing an app if it is already installed on the device for another user. Change-Id: Ib2bc0f39bc6b495af653560cf13cb8477413186d
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 0bc6866f..dfc1a6dd 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -27,6 +27,7 @@
<action android:name="android.intent.action.INSTALL_PACKAGE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" />
+ <data android:scheme="package" />
</intent-filter>
</activity>
<activity android:name=".InstallAppProgress"
@@ -37,7 +38,6 @@
android:excludeFromRecents="true"
android:theme="@android:style/Theme.DeviceDefault.Dialog.NoActionBar">
<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" />