blob: d6c85d346797121ffbeb6b697b56937c8f52fab4 [file] [log] [blame]
The Android Open Source Project2dd83ce2009-03-03 19:32:40 -08001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.android.providers.downloads"
4 android:sharedUserId="android.media">
Tom Taylorc4a51bb2009-08-11 10:28:10 -07005
The Android Open Source Project2dd83ce2009-03-03 19:32:40 -08006 <!-- Allows access to the Download Manager -->
7 <permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER"
8 android:label="@string/permlab_downloadManager"
9 android:description="@string/permdesc_downloadManager"
10 android:protectionLevel="signatureOrSystem" />
11
12 <!-- Allows advanced access to the Download Manager -->
13 <permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED"
14 android:label="@string/permlab_downloadManagerAdvanced"
15 android:description="@string/permdesc_downloadManagerAdvanced"
16 android:protectionLevel="signatureOrSystem" />
17
The Android Open Source Project2dd83ce2009-03-03 19:32:40 -080018 <!-- Allows to send download completed intents -->
19 <permission android:name="android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS"
20 android:label="@string/permlab_downloadCompletedIntent"
21 android:description="@string/permdesc_downloadCompletedIntent"
22 android:protectionLevel="signature" />
23
Steve Howard71aab522010-07-20 16:32:31 -070024 <!-- Allows to download non-purgeable files to the cache partition through the public API -->
25 <permission android:name="android.permission.DOWNLOAD_CACHE_NON_PURGEABLE"
26 android:label="@string/permlab_downloadCacheNonPurgeable"
27 android:description="@string/permdesc_downloadCacheNonPurgeable"
28 android:protectionLevel="dangerous"/>
29
The Android Open Source Project2dd83ce2009-03-03 19:32:40 -080030 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
31 <uses-permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER" />
32 <uses-permission android:name="android.permission.ACCESS_DRM" />
33 <uses-permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM" />
34 <uses-permission android:name="android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS" />
35 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
36 <uses-permission android:name="android.permission.INTERNET" />
San Mehat8a8f58e2009-06-01 09:26:42 -070037 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Tom Taylorc4a51bb2009-08-11 10:28:10 -070038 <uses-permission android:name="android.permission.INSTALL_DRM" />
The Android Open Source Project2dd83ce2009-03-03 19:32:40 -080039
40 <application android:process="android.process.media"
Eric Fischere2beeb12009-06-16 16:34:08 -070041 android:label="@string/app_label">
The Android Open Source Project2dd83ce2009-03-03 19:32:40 -080042 <provider android:name=".DownloadProvider"
Steve Howardb06b7392010-07-22 11:33:50 -070043 android:authorities="downloads" />
The Android Open Source Project2dd83ce2009-03-03 19:32:40 -080044 <service android:name=".DownloadService"
45 android:permission="android.permission.ACCESS_DOWNLOAD_MANAGER" />
46 <receiver android:name=".DownloadReceiver" android:exported="false">
47 <intent-filter>
48 <action android:name="android.intent.action.BOOT_COMPLETED" />
49 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
50 </intent-filter>
51 </receiver>
52 </application>
Tom Taylorc4a51bb2009-08-11 10:28:10 -070053</manifest>