910e62b5创建于 1月15日历史提交
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2024 The Chromium Authors
     Use of this source code is governed by a BSD-style license that can be
     found in the LICENSE file. -->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="org.chromium.base.test.android">
    <application>
        <provider
            android:name="androidx.core.content.FileProvider"
            android:authorities="${applicationId}.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_paths_file_provider" />
        </provider>
        <provider android:name="org.chromium.base.InMemoryContentProvider"
            android:authorities="${applicationId}.inmemory"
            android:exported="false"
            android:grantUriPermissions="true">
        </provider>
        <provider
            android:name="org.chromium.base.TestDocumentsProvider"
            android:authorities="${applicationId}.docprov"
            android:exported="true"
            android:grantUriPermissions="true"
            android:permission="android.permission.MANAGE_DOCUMENTS">
            <intent-filter>
                <action android:name="android.content.action.DOCUMENTS_PROVIDER" />
            </intent-filter>
        </provider>
    </application>
</manifest>