blob: 7374445852961193f642067a2377c667bebe1eb8 [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
4 <uses-permission android:name="android.permission.MANAGE_DOCUMENTS" />
Jeff Sharkey3fd11772013-09-30 14:26:27 -07005 <uses-permission android:name="android.permission.REMOVE_TASKS" />
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07006
Jeff Sharkey2e694f82013-08-06 16:26:14 -07007 <application
Jeff Sharkey873daa32013-08-18 17:38:20 -07008 android:name=".DocumentsApplication"
Jeff Sharkey2e694f82013-08-06 16:26:14 -07009 android:label="@string/app_label"
10 android:supportsRtl="true">
11
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070012 <activity
13 android:name=".DocumentsActivity"
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070014 android:theme="@style/DocumentsTheme"
Jeff Sharkey40457802013-09-21 13:57:33 -070015 android:icon="@drawable/ic_doc_text">
Jeff Sharkey6e565ff2014-04-05 19:05:24 -070016 <intent-filter>
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070017 <action android:name="android.intent.action.OPEN_DOCUMENT" />
18 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey1d890e02013-08-15 11:24:03 -070019 <category android:name="android.intent.category.OPENABLE" />
Jeff Sharkey3c28b792013-07-01 17:22:02 -070020 <data android:mimeType="*/*" />
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070021 </intent-filter>
Jeff Sharkey6e565ff2014-04-05 19:05:24 -070022 <intent-filter>
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070023 <action android:name="android.intent.action.CREATE_DOCUMENT" />
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070024 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey1d890e02013-08-15 11:24:03 -070025 <category android:name="android.intent.category.OPENABLE" />
26 <data android:mimeType="*/*" />
27 </intent-filter>
28 <intent-filter android:priority="100">
29 <action android:name="android.intent.action.GET_CONTENT" />
30 <category android:name="android.intent.category.DEFAULT" />
31 <category android:name="android.intent.category.OPENABLE" />
Jeff Sharkey3c28b792013-07-01 17:22:02 -070032 <data android:mimeType="*/*" />
33 </intent-filter>
Jeff Sharkeyf339f252013-08-15 16:17:41 -070034 <intent-filter>
Jeff Sharkeyf4943e12014-06-04 16:42:47 -070035 <action android:name="android.intent.action.OPEN_DOCUMENT_TREE" />
Jeff Sharkey6e565ff2014-04-05 19:05:24 -070036 <category android:name="android.intent.category.DEFAULT" />
37 </intent-filter>
Ben Kwa0574b182015-09-08 07:31:19 -070038 </activity>
39
40 <activity
41 android:name=".ManageRootActivity"
42 android:theme="@style/DocumentsNonDialogTheme"
43 android:icon="@drawable/ic_doc_text">
Jeff Sharkey311a7d82015-04-11 21:27:21 -070044 <intent-filter>
Ben Kwa0574b182015-09-08 07:31:19 -070045 <action android:name="android.provider.action.MANAGE_ROOT" />
Jeff Sharkey311a7d82015-04-11 21:27:21 -070046 <category android:name="android.intent.category.DEFAULT" />
47 <data android:mimeType="vnd.android.document/root" />
48 </intent-filter>
Jeff Sharkey3c28b792013-07-01 17:22:02 -070049 </activity>
50
Steve McKayd0a2a2c2015-03-25 14:35:33 -070051 <activity
Steve McKayf2c8b0d2015-09-23 15:44:24 -070052 android:name=".LauncherActivity"
53 android:theme="@android:style/Theme.NoDisplay"
Steve McKay52cbfb82015-07-27 12:02:37 -070054 android:icon="@drawable/ic_files_app"
55 android:label="@string/files_label"
Steve McKayd5701fb2015-07-23 13:51:55 -070056 android:enabled="@bool/productivity_device">
Steve McKayd0a2a2c2015-03-25 14:35:33 -070057 <intent-filter>
58 <action android:name="android.intent.action.MAIN" />
59 <category android:name="android.intent.category.LAUNCHER" />
60 </intent-filter>
Steve McKayf2c8b0d2015-09-23 15:44:24 -070061 </activity>
62
63 <activity
64 android:name=".FilesActivity"
65 android:theme="@style/FilesTheme"
66 android:icon="@drawable/ic_files_app"
67 android:label="@string/files_label"
68 android:documentLaunchMode="intoExisting">
69 <intent-filter>
70 <action android:name="android.intent.action.MAIN" />
71 </intent-filter>
Steve McKay459bc2b2015-09-16 15:07:31 -070072 <intent-filter>
73 <action android:name="android.provider.action.BROWSE_DOCUMENT_ROOT" />
74 <category android:name="android.intent.category.DEFAULT" />
75 <data android:mimeType="vnd.android.document/root" />
76 </intent-filter>
Steve McKayd0a2a2c2015-03-25 14:35:33 -070077 </activity>
78
Jeff Sharkey50d35622013-08-02 10:33:21 -070079 <provider
80 android:name=".RecentsProvider"
81 android:authorities="com.android.documentsui.recents"
Steve McKayd0a2a2c2015-03-25 14:35:33 -070082 android:exported="false"/>
Jeff Sharkey50d35622013-08-02 10:33:21 -070083
Jeff Sharkey2bfdedb2013-10-24 10:44:03 -070084 <receiver android:name=".PackageReceiver">
85 <intent-filter>
86 <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
87 <action android:name="android.intent.action.PACKAGE_DATA_CLEARED" />
88 <data android:scheme="package" />
89 </intent-filter>
90 </receiver>
Ben Kwa41b26c12015-03-31 10:11:43 -070091
92 <service
93 android:name=".CopyService"
94 android:exported="false">
95 </service>
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070096 </application>
97</manifest>