1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright 2024 The Chromium Authors 3 Use of this source code is governed by a BSD-style license that can be 4 found in the LICENSE file. --> 5 6<manifest xmlns:android="http://schemas.android.com/apk/res/android" 7 package="org.chromium.base.test.android"> 8 <application> 9 <provider 10 android:name="androidx.core.content.FileProvider" 11 android:authorities="${applicationId}.fileprovider" 12 android:exported="false" 13 android:grantUriPermissions="true"> 14 <meta-data 15 android:name="android.support.FILE_PROVIDER_PATHS" 16 android:resource="@xml/file_paths_file_provider" /> 17 </provider> 18 <provider android:name="org.chromium.base.InMemoryContentProvider" 19 android:authorities="${applicationId}.inmemory" 20 android:exported="false" 21 android:grantUriPermissions="true"> 22 </provider> 23 <provider 24 android:name="org.chromium.base.TestDocumentsProvider" 25 android:authorities="${applicationId}.docprov" 26 android:exported="true" 27 android:grantUriPermissions="true" 28 android:permission="android.permission.MANAGE_DOCUMENTS"> 29 <intent-filter> 30 <action android:name="android.content.action.DOCUMENTS_PROVIDER" /> 31 </intent-filter> 32 </provider> 33 </application> 34</manifest> 35