blob: 25b609b6d312ec2466a27fbbad9b66c41194ada7 [file] [log] [blame]
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.android.documentsui">
3
Felipe Leme8cf6ce22016-02-17 17:10:45 -08004 <uses-permission android:name="android.permission.GET_APP_GRANTED_URI_PERMISSIONS" />
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07005 <uses-permission android:name="android.permission.MANAGE_DOCUMENTS" />
Jeff Sharkey3fd11772013-09-30 14:26:27 -07006 <uses-permission android:name="android.permission.REMOVE_TASKS" />
Jeff Sharkey22056802015-10-01 15:14:57 -07007 <uses-permission android:name="android.permission.WAKE_LOCK" />
Jeff Sharkey50254fe2016-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 Sharkeye22d02e2013-04-26 16:54:55 -070010
Jeff Sharkey2e694f82013-08-06 16:26:14 -070011 <application
Jeff Sharkey873daa32013-08-18 17:38:20 -070012 android:name=".DocumentsApplication"
Jeff Sharkey2e694f82013-08-06 16:26:14 -070013 android:label="@string/app_label"
Steve McKayd5b9b0f2016-08-01 13:00:05 -070014 android:icon="@drawable/app_icon"
Jeff Sharkey2e694f82013-08-06 16:26:14 -070015 android:supportsRtl="true">
16
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070017 <activity
18 android:name=".DocumentsActivity"
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070019 android:theme="@style/DocumentsTheme"
Steve McKayd5b9b0f2016-08-01 13:00:05 -070020 android:icon="@drawable/picker_icon">
Jeff Sharkey6e565ff2014-04-05 19:05:24 -070021 <intent-filter>
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070022 <action android:name="android.intent.action.OPEN_DOCUMENT" />
23 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey1d890e02013-08-15 11:24:03 -070024 <category android:name="android.intent.category.OPENABLE" />
Jeff Sharkey3c28b792013-07-01 17:22:02 -070025 <data android:mimeType="*/*" />
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070026 </intent-filter>
Jeff Sharkey6e565ff2014-04-05 19:05:24 -070027 <intent-filter>
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070028 <action android:name="android.intent.action.CREATE_DOCUMENT" />
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070029 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey1d890e02013-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 Sharkey3c28b792013-07-01 17:22:02 -070037 <data android:mimeType="*/*" />
38 </intent-filter>
Jeff Sharkeyf339f252013-08-15 16:17:41 -070039 <intent-filter>
Jeff Sharkeyf4943e12014-06-04 16:42:47 -070040 <action android:name="android.intent.action.OPEN_DOCUMENT_TREE" />
Jeff Sharkey6e565ff2014-04-05 19:05:24 -070041 <category android:name="android.intent.category.DEFAULT" />
42 </intent-filter>
Ben Kwa0574b182015-09-08 07:31:19 -070043 </activity>
44
45 <activity
Steve McKayf2c8b0d2015-09-23 15:44:24 -070046 android:name=".LauncherActivity"
Steve McKay17f7e582016-04-04 15:26:48 -070047 android:label="@string/downloads_label"
Steve McKayd5b9b0f2016-08-01 13:00:05 -070048 android:icon="@drawable/files_icon"
Steve McKay17f7e582016-04-04 15:26:48 -070049 android:theme="@android:style/Theme.NoDisplay">
Steve McKayd0a2a2c2015-03-25 14:35:33 -070050 <intent-filter>
51 <action android:name="android.intent.action.MAIN" />
52 <category android:name="android.intent.category.LAUNCHER" />
53 </intent-filter>
Steve McKayf2c8b0d2015-09-23 15:44:24 -070054 </activity>
55
56 <activity
57 android:name=".FilesActivity"
Daichi Hirono91252b82016-03-18 17:46:57 +090058 android:label="@string/downloads_label"
Steve McKayd5b9b0f2016-08-01 13:00:05 -070059 android:icon="@drawable/files_icon"
Steve McKay17f7e582016-04-04 15:26:48 -070060 android:documentLaunchMode="intoExisting"
61 android:theme="@style/DocumentsTheme">
Steve McKayf2c8b0d2015-09-23 15:44:24 -070062 <intent-filter>
63 <action android:name="android.intent.action.MAIN" />
64 </intent-filter>
Steve McKay459bc2b2015-09-16 15:07:31 -070065 <intent-filter>
Steve McKay8d45f5a2015-11-20 08:44:55 -080066 <action android:name="android.provider.action.BROWSE" />
Steve McKay459bc2b2015-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 Mikolajewski5a1e8792016-01-27 17:36:51 +090070 <intent-filter>
Steve McKay17f7e582016-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 Mikolajewski5a1e8792016-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 McKayd0a2a2c2015-03-25 14:35:33 -070087 </activity>
88
Felipe Lemea4f4d7e2016-01-22 16:49:55 -080089 <activity
90 android:name=".OpenExternalDirectoryActivity"
91 android:theme="@android:style/Theme.Translucent.NoTitleBar">
92 <intent-filter>
Felipe Leme5228bd02016-02-17 10:12:04 -080093 <action android:name="android.os.storage.action.OPEN_EXTERNAL_DIRECTORY" />
Felipe Lemea4f4d7e2016-01-22 16:49:55 -080094 <category android:name="android.intent.category.DEFAULT" />
Felipe Lemea4f4d7e2016-01-22 16:49:55 -080095 </intent-filter>
96 </activity>
97
Jeff Sharkey50d35622013-08-02 10:33:21 -070098 <provider
99 android:name=".RecentsProvider"
100 android:authorities="com.android.documentsui.recents"
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700101 android:exported="false"/>
Jeff Sharkey50d35622013-08-02 10:33:21 -0700102
Jeff Sharkey2bfdedb2013-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 Kwa41b26c12015-03-31 10:11:43 -0700110
Jeff Sharkeyc66b3042016-03-18 15:22:25 -0600111 <receiver android:name=".BootReceiver" android:enabled="false">
Jeff Sharkey50254fe2016-03-11 17:25:11 -0700112 <intent-filter>
113 <action android:name="android.intent.action.BOOT_COMPLETED" />
114 </intent-filter>
115 </receiver>
116
Garfield, Tanedce5542016-06-17 15:32:28 -0700117 <!-- Run FileOperationService in a separate process so that we can use FileLock class to
118 wait until jumbo clip is done writing to disk before reading it. See ClipStorage for
119 details. -->
Ben Kwa41b26c12015-03-31 10:11:43 -0700120 <service
Steve McKayc83baa02016-01-06 18:32:13 -0800121 android:name=".services.FileOperationService"
Garfield, Tanedce5542016-06-17 15:32:28 -0700122 android:exported="false"
123 android:process=":com.android.documentsui.services">
Ben Kwa41b26c12015-03-31 10:11:43 -0700124 </service>
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700125 </application>
126</manifest>