blob: 84c5474a259f9cb0f6e8ba5eddb1a56960883bd2 [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" />
5
6 <application android:label="@string/app_label">
7 <activity
8 android:name=".DocumentsActivity"
9 android:finishOnCloseSystemDialogs="true"
10 android:excludeFromRecents="true">
11 <intent-filter android:priority="100">
12 <action android:name="android.intent.action.OPEN_DOCUMENT" />
13 <category android:name="android.intent.category.DEFAULT" />
14 </intent-filter>
15 <intent-filter android:priority="100">
16 <action android:name="android.intent.action.CREATE_DOCUMENT" />
17 <category android:name="android.intent.category.DEFAULT" />
18 </intent-filter>
19 </activity>
20 </application>
21</manifest>