blob: e1bec54059b3d8e3f88fd44c335172d0a10b6811 [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"
Chen Su7b6831b2016-12-22 16:21:32 +000015 android:supportsRtl="true"
16 android:allowBackup="true"
17 android:backupAgent=".prefs.BackupAgent"
18 android:fullBackupOnly="false">
19
20 <meta-data
21 android:name="com.google.android.backup.api_key"
22 android:value="AEdPqrEAAAAInBA8ued0O_ZyYUsVhwinUF-x50NIe9K0GzBW4A" />
Jeff Sharkey2e694f82013-08-06 16:26:14 -070023
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070024 <activity
Steve McKay16e0c1f2016-09-15 12:41:13 -070025 android:name=".picker.PickActivity"
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070026 android:theme="@style/DocumentsTheme"
Steve McKayd5b9b0f2016-08-01 13:00:05 -070027 android:icon="@drawable/picker_icon">
Jeff Sharkey6e565ff2014-04-05 19:05:24 -070028 <intent-filter>
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070029 <action android:name="android.intent.action.OPEN_DOCUMENT" />
30 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey1d890e02013-08-15 11:24:03 -070031 <category android:name="android.intent.category.OPENABLE" />
Jeff Sharkey3c28b792013-07-01 17:22:02 -070032 <data android:mimeType="*/*" />
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070033 </intent-filter>
Jeff Sharkey6e565ff2014-04-05 19:05:24 -070034 <intent-filter>
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070035 <action android:name="android.intent.action.CREATE_DOCUMENT" />
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070036 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey1d890e02013-08-15 11:24:03 -070037 <category android:name="android.intent.category.OPENABLE" />
38 <data android:mimeType="*/*" />
39 </intent-filter>
40 <intent-filter android:priority="100">
41 <action android:name="android.intent.action.GET_CONTENT" />
42 <category android:name="android.intent.category.DEFAULT" />
43 <category android:name="android.intent.category.OPENABLE" />
Jeff Sharkey3c28b792013-07-01 17:22:02 -070044 <data android:mimeType="*/*" />
45 </intent-filter>
Jeff Sharkeyf339f252013-08-15 16:17:41 -070046 <intent-filter>
Jeff Sharkeyf4943e12014-06-04 16:42:47 -070047 <action android:name="android.intent.action.OPEN_DOCUMENT_TREE" />
Jeff Sharkey6e565ff2014-04-05 19:05:24 -070048 <category android:name="android.intent.category.DEFAULT" />
49 </intent-filter>
Ben Kwa0574b182015-09-08 07:31:19 -070050 </activity>
51
52 <activity
Steve McKayb6006b22016-09-29 09:23:45 -070053 android:name=".files.LauncherActivity"
Steve McKaya0b52652016-10-27 12:56:55 -070054 android:label="@string/app_label"
Steve McKayd5b9b0f2016-08-01 13:00:05 -070055 android:icon="@drawable/files_icon"
Steve McKay17f7e582016-04-04 15:26:48 -070056 android:theme="@android:style/Theme.NoDisplay">
Steve McKay16e0c1f2016-09-15 12:41:13 -070057 </activity>
58
59 <!-- Preserve original launcher activity from Nougat. -->
60 <activity-alias
61 android:name=".Launcher"
Steve McKayb6006b22016-09-29 09:23:45 -070062 android:targetActivity=".files.LauncherActivity"
Steve McKaya0b52652016-10-27 12:56:55 -070063 android:label="@string/app_label"
Steve McKay16e0c1f2016-09-15 12:41:13 -070064 android:icon="@drawable/files_icon" >
Steve McKayd0a2a2c2015-03-25 14:35:33 -070065 <intent-filter>
66 <action android:name="android.intent.action.MAIN" />
67 <category android:name="android.intent.category.LAUNCHER" />
68 </intent-filter>
Garfield Tan2e3cf1d2016-10-21 15:25:26 -070069 <meta-data android:name="android.app.shortcuts" android:resource="@xml/shortcuts" />
Steve McKay16e0c1f2016-09-15 12:41:13 -070070 </activity-alias>
Steve McKayf2c8b0d2015-09-23 15:44:24 -070071
72 <activity
Steve McKayb6006b22016-09-29 09:23:45 -070073 android:name=".files.FilesActivity"
Steve McKaya0b52652016-10-27 12:56:55 -070074 android:label="@string/app_label"
Steve McKayd5b9b0f2016-08-01 13:00:05 -070075 android:icon="@drawable/files_icon"
Steve McKay17f7e582016-04-04 15:26:48 -070076 android:documentLaunchMode="intoExisting"
77 android:theme="@style/DocumentsTheme">
Steve McKayf2c8b0d2015-09-23 15:44:24 -070078 <intent-filter>
79 <action android:name="android.intent.action.MAIN" />
80 </intent-filter>
Steve McKay459bc2b2015-09-16 15:07:31 -070081 <intent-filter>
Steve McKay8d45f5a2015-11-20 08:44:55 -080082 <action android:name="android.provider.action.BROWSE" />
Steve McKay459bc2b2015-09-16 15:07:31 -070083 <category android:name="android.intent.category.DEFAULT" />
84 <data android:mimeType="vnd.android.document/root" />
85 </intent-filter>
Tomasz Mikolajewski5a1e8792016-01-27 17:36:51 +090086 <intent-filter>
Garfield Tanc5efea02017-02-22 12:58:29 -080087 <action android:name="android.intent.action.VIEW" />
88 <category android:name="android.intent.category.DEFAULT" />
89 <data android:mimeType="vnd.android.document/root" />
90 </intent-filter>
91 <intent-filter>
92 <action android:name="android.intent.action.VIEW" />
Garfield Tanf8969d62017-02-02 16:55:55 -080093 <category android:name="android.intent.category.DEFAULT" />
94 <data android:mimeType="vnd.android.document/directory" />
95 </intent-filter>
96 <intent-filter>
Steve McKay17f7e582016-04-04 15:26:48 -070097 <action android:name="android.intent.action.VIEW_DOWNLOADS" />
98 <category android:name="android.intent.category.DEFAULT" />
99 </intent-filter>
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700100 </activity>
101
Felipe Lemea4f4d7e2016-01-22 16:49:55 -0800102 <activity
103 android:name=".OpenExternalDirectoryActivity"
104 android:theme="@android:style/Theme.Translucent.NoTitleBar">
105 <intent-filter>
Felipe Leme5228bd02016-02-17 10:12:04 -0800106 <action android:name="android.os.storage.action.OPEN_EXTERNAL_DIRECTORY" />
Felipe Lemea4f4d7e2016-01-22 16:49:55 -0800107 <category android:name="android.intent.category.DEFAULT" />
Felipe Lemea4f4d7e2016-01-22 16:49:55 -0800108 </intent-filter>
109 </activity>
110
Jeff Sharkey50d35622013-08-02 10:33:21 -0700111 <provider
Steve McKayd0805062016-09-15 14:30:38 -0700112 android:name=".picker.LastAccessedProvider"
Ben Lin7232bf02016-08-26 14:33:03 -0700113 android:authorities="com.android.documentsui.lastAccessed"
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700114 android:exported="false"/>
Jeff Sharkey50d35622013-08-02 10:33:21 -0700115
Tomasz Mikolajewskidbd6b8b2016-09-29 15:27:37 +0900116 <provider
117 android:name=".archives.ArchivesProvider"
118 android:authorities="com.android.documentsui.archives"
119 android:grantUriPermissions="true"
120 android:permission="android.permission.MANAGE_DOCUMENTS"
Tomasz Mikolajewskibf6cfdc2017-02-13 13:14:30 +0900121 android:exported="true">
122 <intent-filter>
123 <action android:name="android.content.action.DOCUMENTS_PROVIDER" />
124 </intent-filter>
125 </provider>
Tomasz Mikolajewskidbd6b8b2016-09-29 15:27:37 +0900126
Jeff Sharkey2bfdedb2013-10-24 10:44:03 -0700127 <receiver android:name=".PackageReceiver">
128 <intent-filter>
129 <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
130 <action android:name="android.intent.action.PACKAGE_DATA_CLEARED" />
131 <data android:scheme="package" />
132 </intent-filter>
133 </receiver>
Ben Kwa41b26c12015-03-31 10:11:43 -0700134
Steve McKayd9caa6a2016-09-15 16:36:45 -0700135 <receiver android:name=".roots.BootReceiver" android:enabled="false">
Jeff Sharkey50254fe2016-03-11 17:25:11 -0700136 <intent-filter>
137 <action android:name="android.intent.action.BOOT_COMPLETED" />
138 </intent-filter>
139 </receiver>
140
Garfield, Tanedce5542016-06-17 15:32:28 -0700141 <!-- Run FileOperationService in a separate process so that we can use FileLock class to
142 wait until jumbo clip is done writing to disk before reading it. See ClipStorage for
143 details. -->
Ben Kwa41b26c12015-03-31 10:11:43 -0700144 <service
Steve McKayc83baa02016-01-06 18:32:13 -0800145 android:name=".services.FileOperationService"
Garfield, Tanedce5542016-06-17 15:32:28 -0700146 android:exported="false"
147 android:process=":com.android.documentsui.services">
Ben Kwa41b26c12015-03-31 10:11:43 -0700148 </service>
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700149 </application>
150</manifest>