blob: 453ef451e1c1e70eca72d1ab126c0983bf290483 [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" />
5
6 <application android:label="@string/app_label">
7 <activity
8 android:name=".DocumentsActivity"
9 android:finishOnCloseSystemDialogs="true"
Jeff Sharkey54e55b72013-06-30 20:02:59 -070010 android:excludeFromRecents="true"
11 android:theme="@android:style/Theme.Holo.Light">
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070012 <intent-filter android:priority="100">
13 <action android:name="android.intent.action.OPEN_DOCUMENT" />
14 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey14827892013-07-01 17:22:02 -070015 <data android:mimeType="*/*" />
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070016 </intent-filter>
17 <intent-filter android:priority="100">
18 <action android:name="android.intent.action.CREATE_DOCUMENT" />
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070019 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey14827892013-07-01 17:22:02 -070020 <data android:mimeType="*/*" />
21 </intent-filter>
22 </activity>
23
24 <!-- TODO: remove when we have real clients -->
Jeff Sharkeye6ddb922013-07-16 13:01:57 -070025 <activity android:name=".TestActivity" android:enabled="false">
Jeff Sharkey14827892013-07-01 17:22:02 -070026 <intent-filter>
27 <action android:name="android.intent.action.MAIN" />
28 <category android:name="android.intent.category.DEFAULT" />
29 <category android:name="android.intent.category.LAUNCHER" />
Jeff Sharkey9e0036e2013-04-26 16:54:55 -070030 </intent-filter>
31 </activity>
32 </application>
33</manifest>