blob: 92a04dcee362b31a4d7ed2f8b5f07483efb1a163 [file] [log] [blame]
<?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>