blob: 915e2f96efdea227aa3b0b026b6ffecd09be9fd2 [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>
38 <intent-filter>
Jeff Sharkey91a101c2013-09-05 17:14:14 -070039 <action android:name="android.provider.action.MANAGE_ROOT" />
Jeff Sharkeyf339f252013-08-15 16:17:41 -070040 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey91a101c2013-09-05 17:14:14 -070041 <data android:mimeType="vnd.android.document/root" />
Jeff Sharkeyf339f252013-08-15 16:17:41 -070042 </intent-filter>
Jeff Sharkey3c28b792013-07-01 17:22:02 -070043 </activity>
44
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -070045 <activity
46 android:name=".SettingsActivity"
Jeff Sharkey7d58fc62013-09-12 16:25:02 -070047 android:label="@string/menu_settings"
Alan Viverette794c5ac2014-04-01 14:57:39 -070048 android:theme="@android:style/Theme.DeviceDefault.Light.DialogWhenLarge"
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -070049 android:exported="false" />
50
Jeff Sharkey50d35622013-08-02 10:33:21 -070051 <provider
52 android:name=".RecentsProvider"
53 android:authorities="com.android.documentsui.recents"
54 android:exported="false" />
55
Jeff Sharkey2bfdedb2013-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>
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070063 </application>
64</manifest>