1 <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 <uses-permission android:name="android.permission.REMOVE_TASKS" /> 6 7 <application 8 android:name=".DocumentsApplication" 9 android:label="@string/app_label" 10 android:supportsRtl="true"> 11 12 <activity 13 android:name=".DocumentsActivity" 14 android:theme="@style/DocumentsTheme" 15 android:icon="@drawable/ic_doc_text"> 16 <intent-filter> 17 <action android:name="android.intent.action.OPEN_DOCUMENT" /> 18 <category android:name="android.intent.category.DEFAULT" /> 19 <category android:name="android.intent.category.OPENABLE" /> 20 <data android:mimeType="*/*" /> 21 </intent-filter> 22 <intent-filter> 23 <action android:name="android.intent.action.CREATE_DOCUMENT" /> 24 <category android:name="android.intent.category.DEFAULT" /> 25 <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" /> 32 <data android:mimeType="*/*" /> 33 </intent-filter> 34 <intent-filter> 35 <action android:name="android.intent.action.OPEN_DOCUMENT_TREE" /> 36 <category android:name="android.intent.category.DEFAULT" /> 37 </intent-filter> 38 <intent-filter> 39 <action android:name="android.provider.action.MANAGE_ROOT" /> 40 <category android:name="android.intent.category.DEFAULT" /> 41 <data android:mimeType="vnd.android.document/root" /> 42 </intent-filter> 43 <intent-filter> 44 <action android:name="android.provider.action.BROWSE_DOCUMENT_ROOT" /> 45 <category android:name="android.intent.category.DEFAULT" /> 46 <data android:mimeType="vnd.android.document/root" /> 47 </intent-filter> 48 </activity> 49 50 <provider 51 android:name=".RecentsProvider" 52 android:authorities="com.android.documentsui.recents" 53 android:exported="false"/> 54 55 <receiver android:name=".PackageReceiver"> 56 <intent-filter> 57 <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" /> 58 <action android:name="android.intent.action.PACKAGE_DATA_CLEARED" /> 59 <data android:scheme="package" /> 60 </intent-filter> 61 </receiver> 62 63 <service 64 android:name=".CopyService" 65 android:exported="false"> 66 </service> 67 </application> 68 </manifest> 69