summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorLeon Scroggins <scroggo@google.com>2010-01-28 17:53:26 -0500
committerLeon Scroggins <scroggo@google.com>2010-02-05 11:16:49 -0500
commita2028ed4141075da8199ba04a499be77734a85ae (patch)
tree24f1c71c6e1ee200f6decd0c161069368e92ddc4 /AndroidManifest.xml
parent91e4522fa90d969a596058756c24e173df1a6196 (diff)
downloadandroid_packages_providers_DownloadProvider-a2028ed4141075da8199ba04a499be77734a85ae.tar.gz
android_packages_providers_DownloadProvider-a2028ed4141075da8199ba04a499be77734a85ae.tar.bz2
android_packages_providers_DownloadProvider-a2028ed4141075da8199ba04a499be77734a85ae.zip
Create a new permission that allows apps to see downloads from other
applications to the SD card. Necessary for http://b/issue?id=2384554 Also create names for files by default, so they do not display as <Untitled>. Remove calls to createTitleFromFilename, which are no longer necessary. Requires a change to frameworks/base.
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 374b985a..1b111f06 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -21,6 +21,11 @@
android:description="@string/permdesc_downloadCompletedIntent"
android:protectionLevel="signature" />
+ <permission android:name="android.permission.SEE_ALL_EXTERNAL"
+ android:label="@string/permlab_seeAllExternal"
+ android:description="@string/permdesc_seeAllExternal"
+ android:protectionLevel="normal"/>
+
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER" />
<uses-permission android:name="android.permission.ACCESS_DRM" />