blob: ac5e98bc7a5a1bbd1120270158cca2ee7f5a2e93 [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
Steve McKay16e0c1f2016-09-15 12:41:13 -070018 android:name=".picker.PickActivity"
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 McKayb6006b22016-09-29 09:23:45 -070046 android:name=".files.LauncherActivity"
Steve McKaya0b52652016-10-27 12:56:55 -070047 android:label="@string/app_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 McKay16e0c1f2016-09-15 12:41:13 -070050 </activity>
51
52 <!-- Preserve original launcher activity from Nougat. -->
53 <activity-alias
54 android:name=".Launcher"
Steve McKayb6006b22016-09-29 09:23:45 -070055 android:targetActivity=".files.LauncherActivity"
Steve McKaya0b52652016-10-27 12:56:55 -070056 android:label="@string/app_label"
Steve McKay16e0c1f2016-09-15 12:41:13 -070057 android:icon="@drawable/files_icon" >
Steve McKayd0a2a2c2015-03-25 14:35:33 -070058 <intent-filter>
59 <action android:name="android.intent.action.MAIN" />
60 <category android:name="android.intent.category.LAUNCHER" />
61 </intent-filter>
Garfield Tan2e3cf1d2016-10-21 15:25:26 -070062 <meta-data android:name="android.app.shortcuts" android:resource="@xml/shortcuts" />
Steve McKay16e0c1f2016-09-15 12:41:13 -070063 </activity-alias>
Steve McKayf2c8b0d2015-09-23 15:44:24 -070064
65 <activity
Steve McKayb6006b22016-09-29 09:23:45 -070066 android:name=".files.FilesActivity"
Steve McKaya0b52652016-10-27 12:56:55 -070067 android:label="@string/app_label"
Steve McKayd5b9b0f2016-08-01 13:00:05 -070068 android:icon="@drawable/files_icon"
Steve McKay17f7e582016-04-04 15:26:48 -070069 android:documentLaunchMode="intoExisting"
70 android:theme="@style/DocumentsTheme">
Steve McKayf2c8b0d2015-09-23 15:44:24 -070071 <intent-filter>
72 <action android:name="android.intent.action.MAIN" />
73 </intent-filter>
Steve McKay459bc2b2015-09-16 15:07:31 -070074 <intent-filter>
Steve McKay8d45f5a2015-11-20 08:44:55 -080075 <action android:name="android.provider.action.BROWSE" />
Steve McKay459bc2b2015-09-16 15:07:31 -070076 <category android:name="android.intent.category.DEFAULT" />
77 <data android:mimeType="vnd.android.document/root" />
78 </intent-filter>
Tomasz Mikolajewski5a1e8792016-01-27 17:36:51 +090079 <intent-filter>
Steve McKay17f7e582016-04-04 15:26:48 -070080 <action android:name="android.intent.action.VIEW_DOWNLOADS" />
81 <category android:name="android.intent.category.DEFAULT" />
82 </intent-filter>
Steve McKayd0a2a2c2015-03-25 14:35:33 -070083 </activity>
84
Felipe Lemea4f4d7e2016-01-22 16:49:55 -080085 <activity
86 android:name=".OpenExternalDirectoryActivity"
87 android:theme="@android:style/Theme.Translucent.NoTitleBar">
88 <intent-filter>
Felipe Leme5228bd02016-02-17 10:12:04 -080089 <action android:name="android.os.storage.action.OPEN_EXTERNAL_DIRECTORY" />
Felipe Lemea4f4d7e2016-01-22 16:49:55 -080090 <category android:name="android.intent.category.DEFAULT" />
Felipe Lemea4f4d7e2016-01-22 16:49:55 -080091 </intent-filter>
92 </activity>
93
Jeff Sharkey50d35622013-08-02 10:33:21 -070094 <provider
Steve McKayd0805062016-09-15 14:30:38 -070095 android:name=".picker.LastAccessedProvider"
Ben Lin7232bf02016-08-26 14:33:03 -070096 android:authorities="com.android.documentsui.lastAccessed"
Steve McKayd0a2a2c2015-03-25 14:35:33 -070097 android:exported="false"/>
Jeff Sharkey50d35622013-08-02 10:33:21 -070098
Tomasz Mikolajewskidbd6b8b2016-09-29 15:27:37 +090099 <provider
100 android:name=".archives.ArchivesProvider"
101 android:authorities="com.android.documentsui.archives"
102 android:grantUriPermissions="true"
103 android:permission="android.permission.MANAGE_DOCUMENTS"
104 android:exported="true"/>
105
Jeff Sharkey2bfdedb2013-10-24 10:44:03 -0700106 <receiver android:name=".PackageReceiver">
107 <intent-filter>
108 <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
109 <action android:name="android.intent.action.PACKAGE_DATA_CLEARED" />
110 <data android:scheme="package" />
111 </intent-filter>
112 </receiver>
Ben Kwa41b26c12015-03-31 10:11:43 -0700113
Steve McKayd9caa6a2016-09-15 16:36:45 -0700114 <receiver android:name=".roots.BootReceiver" android:enabled="false">
Jeff Sharkey50254fe2016-03-11 17:25:11 -0700115 <intent-filter>
116 <action android:name="android.intent.action.BOOT_COMPLETED" />
117 </intent-filter>
118 </receiver>
119
Garfield, Tanedce5542016-06-17 15:32:28 -0700120 <!-- Run FileOperationService in a separate process so that we can use FileLock class to
121 wait until jumbo clip is done writing to disk before reading it. See ClipStorage for
122 details. -->
Ben Kwa41b26c12015-03-31 10:11:43 -0700123 <service
Steve McKayc83baa02016-01-06 18:32:13 -0800124 android:name=".services.FileOperationService"
Garfield, Tanedce5542016-06-17 15:32:28 -0700125 android:exported="false"
126 android:process=":com.android.documentsui.services">
Ben Kwa41b26c12015-03-31 10:11:43 -0700127 </service>
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700128 </application>
129</manifest>