blob: 518dcdc519bd77fc4ce866f699e9dbd8cae40903 [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
Jeff Sharkey2e694f82013-08-06 16:26:14 -07006 <application
7 android:label="@string/app_label"
8 android:supportsRtl="true">
9
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -070010 <!-- TODO: allow rotation when state saving is in better shape -->
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070011 <activity
12 android:name=".DocumentsActivity"
13 android:finishOnCloseSystemDialogs="true"
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070014 android:excludeFromRecents="true"
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -070015 android:theme="@android:style/Theme.Holo.Light"
16 android:screenOrientation="nosensor">
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070017 <intent-filter android:priority="100">
18 <action android:name="android.intent.action.OPEN_DOCUMENT" />
19 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey1d890e02013-08-15 11:24:03 -070020 <category android:name="android.intent.category.OPENABLE" />
Jeff Sharkey3c28b792013-07-01 17:22:02 -070021 <data android:mimeType="*/*" />
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070022 </intent-filter>
23 <intent-filter android:priority="100">
24 <action android:name="android.intent.action.CREATE_DOCUMENT" />
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070025 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey1d890e02013-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 Sharkey3c28b792013-07-01 17:22:02 -070033 <data android:mimeType="*/*" />
34 </intent-filter>
Jeff Sharkeyf339f252013-08-15 16:17:41 -070035 <!-- data expected to point at existing root to manage -->
36 <intent-filter>
37 <action android:name="android.intent.action.MANAGE_DOCUMENT" />
38 <category android:name="android.intent.category.DEFAULT" />
39 <data android:mimeType="vnd.android.cursor.item/root" />
40 </intent-filter>
Jeff Sharkey3c28b792013-07-01 17:22:02 -070041 </activity>
42
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -070043 <activity
44 android:name=".SettingsActivity"
45 android:title="@string/menu_settings"
46 android:theme="@android:style/Theme.Holo.Light"
47 android:exported="false" />
48
Jeff Sharkey50d35622013-08-02 10:33:21 -070049 <provider
50 android:name=".RecentsProvider"
51 android:authorities="com.android.documentsui.recents"
52 android:exported="false" />
53
Jeff Sharkey3c28b792013-07-01 17:22:02 -070054 <!-- TODO: remove when we have real clients -->
Jeff Sharkeyff5db1b2013-07-16 13:01:57 -070055 <activity android:name=".TestActivity" android:enabled="false">
Jeff Sharkey3c28b792013-07-01 17:22:02 -070056 <intent-filter>
57 <action android:name="android.intent.action.MAIN" />
58 <category android:name="android.intent.category.DEFAULT" />
59 <category android:name="android.intent.category.LAUNCHER" />
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070060 </intent-filter>
61 </activity>
62 </application>
63</manifest>