blob: 8e3b2c63de9fca1e8785c0caf40be0783a28dd92 [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>
Garfield Tanf8969d62017-02-02 16:55:55 -080080 <action android:name="android.provider.action.BROWSE" />
81 <category android:name="android.intent.category.DEFAULT" />
82 <data android:mimeType="vnd.android.document/directory" />
83 </intent-filter>
84 <intent-filter>
Steve McKay17f7e582016-04-04 15:26:48 -070085 <action android:name="android.intent.action.VIEW_DOWNLOADS" />
86 <category android:name="android.intent.category.DEFAULT" />
87 </intent-filter>
Steve McKayd0a2a2c2015-03-25 14:35:33 -070088 </activity>
89
Felipe Lemea4f4d7e2016-01-22 16:49:55 -080090 <activity
91 android:name=".OpenExternalDirectoryActivity"
92 android:theme="@android:style/Theme.Translucent.NoTitleBar">
93 <intent-filter>
Felipe Leme5228bd02016-02-17 10:12:04 -080094 <action android:name="android.os.storage.action.OPEN_EXTERNAL_DIRECTORY" />
Felipe Lemea4f4d7e2016-01-22 16:49:55 -080095 <category android:name="android.intent.category.DEFAULT" />
Felipe Lemea4f4d7e2016-01-22 16:49:55 -080096 </intent-filter>
97 </activity>
98
Jeff Sharkey50d35622013-08-02 10:33:21 -070099 <provider
Steve McKayd0805062016-09-15 14:30:38 -0700100 android:name=".picker.LastAccessedProvider"
Ben Lin7232bf02016-08-26 14:33:03 -0700101 android:authorities="com.android.documentsui.lastAccessed"
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700102 android:exported="false"/>
Jeff Sharkey50d35622013-08-02 10:33:21 -0700103
Tomasz Mikolajewskidbd6b8b2016-09-29 15:27:37 +0900104 <provider
105 android:name=".archives.ArchivesProvider"
106 android:authorities="com.android.documentsui.archives"
107 android:grantUriPermissions="true"
108 android:permission="android.permission.MANAGE_DOCUMENTS"
109 android:exported="true"/>
110
Jeff Sharkey2bfdedb2013-10-24 10:44:03 -0700111 <receiver android:name=".PackageReceiver">
112 <intent-filter>
113 <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
114 <action android:name="android.intent.action.PACKAGE_DATA_CLEARED" />
115 <data android:scheme="package" />
116 </intent-filter>
117 </receiver>
Ben Kwa41b26c12015-03-31 10:11:43 -0700118
Steve McKayd9caa6a2016-09-15 16:36:45 -0700119 <receiver android:name=".roots.BootReceiver" android:enabled="false">
Jeff Sharkey50254fe2016-03-11 17:25:11 -0700120 <intent-filter>
121 <action android:name="android.intent.action.BOOT_COMPLETED" />
122 </intent-filter>
123 </receiver>
124
Garfield, Tanedce5542016-06-17 15:32:28 -0700125 <!-- Run FileOperationService in a separate process so that we can use FileLock class to
126 wait until jumbo clip is done writing to disk before reading it. See ClipStorage for
127 details. -->
Ben Kwa41b26c12015-03-31 10:11:43 -0700128 <service
Steve McKayc83baa02016-01-06 18:32:13 -0800129 android:name=".services.FileOperationService"
Garfield, Tanedce5542016-06-17 15:32:28 -0700130 android:exported="false"
131 android:process=":com.android.documentsui.services">
Ben Kwa41b26c12015-03-31 10:11:43 -0700132 </service>
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700133 </application>
134</manifest>