You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
197 lines
8.4 KiB
197 lines
8.4 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<!-- |
|
/* |
|
* Copyright (C) 2007-2017 The Android Open Source Project |
|
* |
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
* you may not use this file except in compliance with the License. |
|
* You may obtain a copy of the License at |
|
* |
|
* http://www.apache.org/licenses/LICENSE-2.0 |
|
* |
|
* Unless required by applicable law or agreed to in writing, software |
|
* distributed under the License is distributed on an "AS IS" BASIS, |
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
* See the License for the specific language governing permissions and |
|
* limitations under the License. |
|
*/ |
|
--> |
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
|
package="com.android.documentsui"> |
|
|
|
<uses-permission android:name="android.permission.MANAGE_DOCUMENTS" /> |
|
<uses-permission android:name="android.permission.REMOVE_TASKS" /> |
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/> |
|
<uses-permission android:name="android.permission.WAKE_LOCK" /> |
|
<uses-permission android:name="android.permission.CACHE_CONTENT" /> |
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
|
<uses-permission android:name="android.permission.CHANGE_OVERLAY_PACKAGES" /> |
|
|
|
<application |
|
android:name=".DocumentsApplication" |
|
android:label="@string/app_label" |
|
android:icon="@drawable/app_icon" |
|
android:supportsRtl="true" |
|
android:allowBackup="true" |
|
android:backupAgent=".prefs.BackupAgent" |
|
android:fullBackupOnly="false"> |
|
|
|
<meta-data |
|
android:name="com.google.android.backup.api_key" |
|
android:value="AEdPqrEAAAAInBA8ued0O_ZyYUsVhwinUF-x50NIe9K0GzBW4A" /> |
|
|
|
<activity |
|
android:name=".picker.PickActivity" |
|
android:theme="@style/DocumentsTheme" |
|
android:visibleToInstantApps="true"> |
|
<intent-filter> |
|
<action android:name="android.intent.action.OPEN_DOCUMENT" /> |
|
<category android:name="android.intent.category.DEFAULT" /> |
|
<category android:name="android.intent.category.OPENABLE" /> |
|
<data android:mimeType="*/*" /> |
|
</intent-filter> |
|
<intent-filter> |
|
<action android:name="android.intent.action.CREATE_DOCUMENT" /> |
|
<category android:name="android.intent.category.DEFAULT" /> |
|
<category android:name="android.intent.category.OPENABLE" /> |
|
<data android:mimeType="*/*" /> |
|
</intent-filter> |
|
<intent-filter android:priority="100"> |
|
<action android:name="android.intent.action.GET_CONTENT" /> |
|
<category android:name="android.intent.category.DEFAULT" /> |
|
<category android:name="android.intent.category.OPENABLE" /> |
|
<data android:mimeType="*/*" /> |
|
</intent-filter> |
|
<intent-filter> |
|
<action android:name="android.intent.action.OPEN_DOCUMENT_TREE" /> |
|
<category android:name="android.intent.category.DEFAULT" /> |
|
</intent-filter> |
|
</activity> |
|
|
|
<activity |
|
android:name=".files.LauncherActivity" |
|
android:label="@string/launcher_label" |
|
android:icon="@drawable/launcher_icon" |
|
android:theme="@android:style/Theme.NoDisplay"> |
|
</activity> |
|
|
|
<activity |
|
android:name=".inspector.InspectorActivity" |
|
android:label="@string/menu_inspect" |
|
android:icon="@drawable/launcher_icon" |
|
android:theme="@style/DocumentsTheme"> |
|
</activity> |
|
|
|
<!-- Preserve original launcher activity from Nougat. --> |
|
<activity-alias |
|
android:name=".LauncherActivity" |
|
android:targetActivity=".files.LauncherActivity" |
|
android:enabled="@bool/is_launcher_enabled" |
|
android:label="@string/launcher_label" |
|
android:icon="@drawable/launcher_icon" > |
|
<intent-filter> |
|
<action android:name="android.intent.action.MAIN" /> |
|
<category android:name="android.intent.category.LAUNCHER" /> |
|
<category android:name="android.intent.category.APP_FILES" /> |
|
</intent-filter> |
|
<meta-data android:name="android.app.shortcuts" android:resource="@xml/shortcuts" /> |
|
</activity-alias> |
|
|
|
<activity |
|
android:name=".files.FilesActivity" |
|
android:documentLaunchMode="intoExisting" |
|
android:theme="@style/DocumentsTheme"> |
|
<intent-filter> |
|
<action android:name="android.intent.action.MAIN" /> |
|
</intent-filter> |
|
<intent-filter> |
|
<action android:name="android.intent.action.VIEW" /> |
|
<category android:name="android.intent.category.DEFAULT" /> |
|
<data android:mimeType="vnd.android.document/root" /> |
|
</intent-filter> |
|
<intent-filter> |
|
<action android:name="android.intent.action.VIEW" /> |
|
<category android:name="android.intent.category.DEFAULT" /> |
|
<data android:mimeType="vnd.android.document/directory" /> |
|
</intent-filter> |
|
</activity> |
|
|
|
<activity-alias android:name=".ViewDownloadsActivity" |
|
android:targetActivity=".files.FilesActivity" |
|
android:enabled="@bool/handle_view_downloads_intent"> |
|
<intent-filter> |
|
<action android:name="android.intent.action.VIEW_DOWNLOADS" /> |
|
<category android:name="android.intent.category.DEFAULT" /> |
|
</intent-filter> |
|
</activity-alias> |
|
|
|
<activity |
|
android:name=".ScopedAccessActivity" |
|
android:theme="@android:style/Theme.Translucent.NoTitleBar"> |
|
<intent-filter> |
|
<action android:name="android.os.storage.action.OPEN_EXTERNAL_DIRECTORY" /> |
|
<category android:name="android.intent.category.DEFAULT" /> |
|
</intent-filter> |
|
</activity> |
|
|
|
<provider |
|
android:name=".picker.LastAccessedProvider" |
|
android:authorities="com.android.documentsui.lastAccessed" |
|
android:exported="false"/> |
|
|
|
<provider |
|
android:name=".picker.PickCountRecordProvider" |
|
android:authorities="com.android.documentsui.pickCountRecord" |
|
android:exported="false"/> |
|
|
|
<provider |
|
android:name=".archives.ArchivesProvider" |
|
android:authorities="com.android.documentsui.archives" |
|
android:grantUriPermissions="true" |
|
android:permission="android.permission.MANAGE_DOCUMENTS" |
|
android:exported="true"> |
|
<intent-filter> |
|
<action android:name="android.content.action.DOCUMENTS_PROVIDER" /> |
|
</intent-filter> |
|
</provider> |
|
|
|
<receiver android:name=".PackageReceiver"> |
|
<intent-filter> |
|
<action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" /> |
|
<action android:name="android.intent.action.PACKAGE_DATA_CLEARED" /> |
|
<data android:scheme="package" /> |
|
</intent-filter> |
|
</receiver> |
|
|
|
<receiver android:name=".roots.BootReceiver" android:enabled="false"> |
|
<intent-filter> |
|
<action android:name="android.intent.action.BOOT_COMPLETED" /> |
|
</intent-filter> |
|
</receiver> |
|
|
|
<receiver android:name=".PreBootReceiver"> |
|
<intent-filter> |
|
<action android:name="android.intent.action.PRE_BOOT_COMPLETED" /> |
|
</intent-filter> |
|
</receiver> |
|
|
|
<!-- Run FileOperationService in a separate process so that we can use FileLock class to |
|
wait until jumbo clip is done writing to disk before reading it. See ClipStorage for |
|
details. --> |
|
<service |
|
android:name=".services.FileOperationService" |
|
android:exported="false" |
|
android:process=":com.android.documentsui.services"> |
|
</service> |
|
|
|
<activity |
|
android:name=".selection.demo.SelectionDemoActivity" |
|
android:label="Selection Demo" |
|
android:theme="@style/DocumentsTheme"> |
|
<intent-filter> |
|
<action android:name="android.intent.action.MAIN" /> |
|
</intent-filter> |
|
</activity> |
|
|
|
</application> |
|
</manifest>
|
|
|