blob: 053755719c4795c2e4c76f26c01e649e84cdf6d9 [file] [log] [blame]
Jeff Sharkey9e0036e2013-04-26 16:54:55 -07001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.android.documentsui">
3
Felipe Leme560d23a2016-02-17 17:10:45 -08004 <uses-permission android:name="android.permission.GET_APP_GRANTED_URI_PERMISSIONS" />
Jeff Sharkey9e0036e2013-04-26 16:54:55 -07005 <uses-permission android:name="android.permission.MANAGE_DOCUMENTS" />
Jeff Sharkey7aa76012013-09-30 14:26:27 -07006 <uses-permission android:name="android.permission.REMOVE_TASKS" />
Jeff Sharkey3c12a7c2015-10-01 15:14:57 -07007 <uses-permission android:name="android.permission.WAKE_LOCK" />
Jeff Sharkey87314082016-03-11 17:25:11 -07008 <uses-permission android:name="android.permission.CACHE_CONTENT" />
9 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070010
Jeff Sharkeyb156f4b2013-08-06 16:26:14 -070011 <application
Jeff Sharkey4eb407a2013-08-18 17:38:20 -070012 android:name=".DocumentsApplication"
Jeff Sharkeyb156f4b2013-08-06 16:26:14 -070013 android:label="@string/app_label"
Steve McKay24cd5922017-01-25 10:19:06 -080014 android:icon="@drawable/app_icon"
Jeff Sharkeyb156f4b2013-08-06 16:26:14 -070015 android:supportsRtl="true">
16
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070017 <activity
18 android:name=".DocumentsActivity"
Jeff Sharkeyf52773f2014-07-28 16:38:52 -070019 android:theme="@style/DocumentsTheme"
Steve McKay24cd5922017-01-25 10:19:06 -080020 android:icon="@drawable/picker_icon">
Jeff Sharkey21de56a2014-04-05 19:05:24 -070021 <intent-filter>
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070022 <action android:name="android.intent.action.OPEN_DOCUMENT" />
23 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey54ca29a2013-08-15 11:24:03 -070024 <category android:name="android.intent.category.OPENABLE" />
Jeff Sharkey14827892013-07-01 17:22:02 -070025 <data android:mimeType="*/*" />
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070026 </intent-filter>
Jeff Sharkey21de56a2014-04-05 19:05:24 -070027 <intent-filter>
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070028 <action android:name="android.intent.action.CREATE_DOCUMENT" />
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070029 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey54ca29a2013-08-15 11:24:03 -070030 <category android:name="android.intent.category.OPENABLE" />
31 <data android:mimeType="*/*" />
32 </intent-filter>
33 <intent-filter android:priority="100">
34 <action android:name="android.intent.action.GET_CONTENT" />
35 <category android:name="android.intent.category.DEFAULT" />
36 <category android:name="android.intent.category.OPENABLE" />
Jeff Sharkey14827892013-07-01 17:22:02 -070037 <data android:mimeType="*/*" />
38 </intent-filter>
Jeff Sharkeya5599ef2013-08-15 16:17:41 -070039 <intent-filter>
Jeff Sharkeyb9fbb722014-06-04 16:42:47 -070040 <action android:name="android.intent.action.OPEN_DOCUMENT_TREE" />
Jeff Sharkey21de56a2014-04-05 19:05:24 -070041 <category android:name="android.intent.category.DEFAULT" />
42 </intent-filter>
Ben Kwa0f7078f02015-09-08 07:31:19 -070043 </activity>
44
45 <activity
Steve McKay9f9d5b42015-09-23 15:44:24 -070046 android:name=".LauncherActivity"
Steve McKay53f109b32016-04-04 15:26:48 -070047 android:label="@string/downloads_label"
Steve McKay24cd5922017-01-25 10:19:06 -080048 android:icon="@drawable/files_icon"
Steve McKay53f109b32016-04-04 15:26:48 -070049 android:theme="@android:style/Theme.NoDisplay">
Steve McKaye934ce62015-03-25 14:35:33 -070050 <intent-filter>
51 <action android:name="android.intent.action.MAIN" />
Steve McKay080d71b2016-03-04 19:52:55 +000052 <category android:name="android.intent.category.LAUNCHER" />
Steve McKaye934ce62015-03-25 14:35:33 -070053 </intent-filter>
Steve McKay9f9d5b42015-09-23 15:44:24 -070054 </activity>
55
56 <activity
57 android:name=".FilesActivity"
Daichi Hirono2917fa92016-03-18 17:46:57 +090058 android:label="@string/downloads_label"
Steve McKay24cd5922017-01-25 10:19:06 -080059 android:icon="@drawable/files_icon"
Steve McKay53f109b32016-04-04 15:26:48 -070060 android:documentLaunchMode="intoExisting"
61 android:theme="@style/DocumentsTheme">
Steve McKay9f9d5b42015-09-23 15:44:24 -070062 <intent-filter>
63 <action android:name="android.intent.action.MAIN" />
64 </intent-filter>
Steve McKay83df8c02015-09-16 15:07:31 -070065 <intent-filter>
Steve McKay6c880852015-11-20 08:44:55 -080066 <action android:name="android.provider.action.BROWSE" />
Steve McKay83df8c02015-09-16 15:07:31 -070067 <category android:name="android.intent.category.DEFAULT" />
68 <data android:mimeType="vnd.android.document/root" />
69 </intent-filter>
Tomasz Mikolajewskia6120da2016-01-27 17:36:51 +090070 <intent-filter>
Steve McKay53f109b32016-04-04 15:26:48 -070071 <action android:name="android.intent.action.VIEW_DOWNLOADS" />
72 <category android:name="android.intent.category.DEFAULT" />
73 </intent-filter>
74 <intent-filter>
Tomasz Mikolajewskia6120da2016-01-27 17:36:51 +090075 <action android:name="android.intent.action.VIEW" />
76 <category android:name="android.intent.category.DEFAULT" />
77 <data android:mimeType="application/zip"
78 android:host="com.android.providers.downloads.documents"
79 android:scheme="content" />
80 <data android:mimeType="application/x-zip"
81 android:host="com.android.providers.downloads.documents"
82 android:scheme="content" />
83 <data android:mimeType="application/x-zip-compressed"
84 android:host="com.android.providers.downloads.documents"
85 android:scheme="content" />
86 </intent-filter>
Steve McKaye934ce62015-03-25 14:35:33 -070087 </activity>
88
Felipe Lemeb012f912016-01-22 16:49:55 -080089 <activity
90 android:name=".OpenExternalDirectoryActivity"
91 android:theme="@android:style/Theme.Translucent.NoTitleBar">
92 <intent-filter>
Felipe Leme34a9d522016-02-17 10:12:04 -080093 <action android:name="android.os.storage.action.OPEN_EXTERNAL_DIRECTORY" />
Felipe Lemeb012f912016-01-22 16:49:55 -080094 <category android:name="android.intent.category.DEFAULT" />
Felipe Lemeb012f912016-01-22 16:49:55 -080095 </intent-filter>
96 </activity>
97
Jeff Sharkey92d7e692013-08-02 10:33:21 -070098 <provider
99 android:name=".RecentsProvider"
100 android:authorities="com.android.documentsui.recents"
Steve McKaye934ce62015-03-25 14:35:33 -0700101 android:exported="false"/>
Jeff Sharkey92d7e692013-08-02 10:33:21 -0700102
Jeff Sharkey758f97e2013-10-24 10:44:03 -0700103 <receiver android:name=".PackageReceiver">
104 <intent-filter>
105 <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
106 <action android:name="android.intent.action.PACKAGE_DATA_CLEARED" />
107 <data android:scheme="package" />
108 </intent-filter>
109 </receiver>
Ben Kwad99109f2015-03-31 10:11:43 -0700110
Jeff Sharkeye090b792016-03-18 15:22:25 -0600111 <receiver android:name=".BootReceiver" android:enabled="false">
Jeff Sharkey87314082016-03-11 17:25:11 -0700112 <intent-filter>
113 <action android:name="android.intent.action.BOOT_COMPLETED" />
114 </intent-filter>
115 </receiver>
116
Ben Kwad99109f2015-03-31 10:11:43 -0700117 <service
Steve McKay14e827a2016-01-06 18:32:13 -0800118 android:name=".services.FileOperationService"
Ben Kwad99109f2015-03-31 10:11:43 -0700119 android:exported="false">
120 </service>
Jeff Sharkey9e0036e2013-04-26 16:54:55 -0700121 </application>
122</manifest>