blob: ff14f94b471f7d6f8b94be285eee87074779a216 [file] [log] [blame]
Jeff Sharkey9e0036e2013-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 Sharkey7aa76012013-09-30 14:26:27 -07005 <uses-permission android:name="android.permission.REMOVE_TASKS" />
Jeff Sharkey3c12a7c2015-10-01 15:14:57 -07006 <uses-permission android:name="android.permission.WAKE_LOCK" />
Jeff Sharkey9e0036e2013-04-26 16:54:55 -07007
Jeff Sharkeyb156f4b2013-08-06 16:26:14 -07008 <application
Jeff Sharkey4eb407a2013-08-18 17:38:20 -07009 android:name=".DocumentsApplication"
Jeff Sharkeyb156f4b2013-08-06 16:26:14 -070010 android:label="@string/app_label"
11 android:supportsRtl="true">
12
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070013 <activity
14 android:name=".DocumentsActivity"
Jeff Sharkeyf52773f2014-07-28 16:38:52 -070015 android:theme="@style/DocumentsTheme"
Jeff Sharkey5545f562013-09-21 13:57:33 -070016 android:icon="@drawable/ic_doc_text">
Jeff Sharkey21de56a2014-04-05 19:05:24 -070017 <intent-filter>
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070018 <action android:name="android.intent.action.OPEN_DOCUMENT" />
19 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey54ca29a2013-08-15 11:24:03 -070020 <category android:name="android.intent.category.OPENABLE" />
Jeff Sharkey14827892013-07-01 17:22:02 -070021 <data android:mimeType="*/*" />
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070022 </intent-filter>
Jeff Sharkey21de56a2014-04-05 19:05:24 -070023 <intent-filter>
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070024 <action android:name="android.intent.action.CREATE_DOCUMENT" />
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070025 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey54ca29a2013-08-15 11:24:03 -070026 <category android:name="android.intent.category.OPENABLE" />
27 <data android:mimeType="*/*" />
28 </intent-filter>
29 <intent-filter android:priority="100">
30 <action android:name="android.intent.action.GET_CONTENT" />
31 <category android:name="android.intent.category.DEFAULT" />
32 <category android:name="android.intent.category.OPENABLE" />
Jeff Sharkey14827892013-07-01 17:22:02 -070033 <data android:mimeType="*/*" />
34 </intent-filter>
Jeff Sharkeya5599ef2013-08-15 16:17:41 -070035 <intent-filter>
Jeff Sharkeyb9fbb722014-06-04 16:42:47 -070036 <action android:name="android.intent.action.OPEN_DOCUMENT_TREE" />
Jeff Sharkey21de56a2014-04-05 19:05:24 -070037 <category android:name="android.intent.category.DEFAULT" />
38 </intent-filter>
39 <intent-filter>
Jeff Sharkeya61dc8e2013-09-05 17:14:14 -070040 <action android:name="android.provider.action.MANAGE_ROOT" />
Jeff Sharkeya5599ef2013-08-15 16:17:41 -070041 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeya61dc8e2013-09-05 17:14:14 -070042 <data android:mimeType="vnd.android.document/root" />
Jeff Sharkeya5599ef2013-08-15 16:17:41 -070043 </intent-filter>
Jeff Sharkey59d577a2015-04-11 21:27:21 -070044 <intent-filter>
Jeff Sharkey1407d4c2015-04-12 21:52:24 -070045 <action android:name="android.provider.action.BROWSE_DOCUMENT_ROOT" />
Jeff Sharkey59d577a2015-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 Sharkey14827892013-07-01 17:22:02 -070049 </activity>
50
Jeff Sharkey92d7e692013-08-02 10:33:21 -070051 <provider
52 android:name=".RecentsProvider"
53 android:authorities="com.android.documentsui.recents"
Steve McKaye934ce62015-03-25 14:35:33 -070054 android:exported="false"/>
Jeff Sharkey92d7e692013-08-02 10:33:21 -070055
Jeff Sharkey758f97e2013-10-24 10:44:03 -070056 <receiver android:name=".PackageReceiver">
57 <intent-filter>
58 <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
59 <action android:name="android.intent.action.PACKAGE_DATA_CLEARED" />
60 <data android:scheme="package" />
61 </intent-filter>
62 </receiver>
Ben Kwad99109f2015-03-31 10:11:43 -070063
64 <service
65 android:name=".CopyService"
66 android:exported="false">
67 </service>
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070068 </application>
69</manifest>