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