blob: 27f93c0549aeca13dba5b23ef3e58ccda345b033 [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 Sharkey3c28b792013-07-01 17:22:02 -070020 <data android:mimeType="*/*" />
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070021 </intent-filter>
22 <intent-filter android:priority="100">
23 <action android:name="android.intent.action.CREATE_DOCUMENT" />
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070024 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3c28b792013-07-01 17:22:02 -070025 <data android:mimeType="*/*" />
26 </intent-filter>
27 </activity>
28
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -070029 <activity
30 android:name=".SettingsActivity"
31 android:title="@string/menu_settings"
32 android:theme="@android:style/Theme.Holo.Light"
33 android:exported="false" />
34
Jeff Sharkey50d35622013-08-02 10:33:21 -070035 <provider
36 android:name=".RecentsProvider"
37 android:authorities="com.android.documentsui.recents"
38 android:exported="false" />
39
Jeff Sharkey3c28b792013-07-01 17:22:02 -070040 <!-- TODO: remove when we have real clients -->
Jeff Sharkeyff5db1b2013-07-16 13:01:57 -070041 <activity android:name=".TestActivity" android:enabled="false">
Jeff Sharkey3c28b792013-07-01 17:22:02 -070042 <intent-filter>
43 <action android:name="android.intent.action.MAIN" />
44 <category android:name="android.intent.category.DEFAULT" />
45 <category android:name="android.intent.category.LAUNCHER" />
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070046 </intent-filter>
47 </activity>
48 </application>
49</manifest>