AndroidManifest.xml (1161B)
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public 2 - License, v. 2.0. If a copy of the MPL was not distributed with this 3 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 <manifest xmlns:android="http://schemas.android.com/apk/res/android"> 5 6 <!-- Needed for uploading media files on devices with Android 13 and later. --> 7 <uses-permission android:name="android.permission.READ_MEDIA_AUDIO" /> 8 9 <!-- Used for requesting partial video/image files access on devices with Android 14 and later. --> 10 <uses-permission android:name="android.permission.READ_MEDIA_VISUAL_USER_SELECTED" /> 11 12 <application android:supportsRtl="true"> 13 <provider 14 android:name="mozilla.components.feature.prompts.provider.FileProvider" 15 android:authorities="${applicationId}.feature.prompts.fileprovider" 16 android:exported="false" 17 android:grantUriPermissions="true"> 18 <meta-data 19 android:name="android.support.FILE_PROVIDER_PATHS" 20 android:resource="@xml/feature_prompts_file_paths" /> 21 </provider> 22 </application> 23 </manifest>