site_permissions.xml (2677B)
1 <?xml version="1.0" encoding="utf-8"?><!-- 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 <androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 5 xmlns:app="http://schemas.android.com/apk/res-auto"> 6 <androidx.preference.Preference 7 android:icon="@drawable/mozac_ic_autoplay_24" 8 android:key="@string/pref_key_autoplay" 9 android:layout="@layout/focus_preference_new_tab" 10 android:summary="@string/preference_block_autoplay_audio_video" 11 android:title="@string/preference_autoplay" /> 12 13 <androidx.preference.Preference 14 android:icon="@drawable/mozac_ic_camera_24" 15 android:key="@string/pref_key_phone_feature_camera" 16 android:layout="@layout/focus_preference_new_tab" 17 android:summary="@string/preference_option_phone_feature_ask_to_allow" 18 android:title="@string/preference_phone_feature_camera" /> 19 20 <androidx.preference.Preference 21 android:icon="@drawable/mozac_ic_location_24" 22 android:layout="@layout/focus_preference_new_tab" 23 android:key="@string/pref_key_phone_feature_location" 24 android:summary="@string/preference_option_phone_feature_ask_to_allow" 25 android:title="@string/preference_phone_feature_location" /> 26 27 <androidx.preference.Preference 28 android:icon="@drawable/mozac_ic_microphone_24" 29 android:key="@string/pref_key_phone_feature_microphone" 30 android:layout="@layout/focus_preference_new_tab" 31 android:summary="@string/preference_option_phone_feature_ask_to_allow" 32 android:title="@string/preference_phone_feature_microphone" /> 33 34 <androidx.preference.Preference 35 android:icon="@drawable/mozac_ic_notification_24" 36 android:key="@string/pref_key_phone_feature_notification" 37 android:layout="@layout/focus_preference_new_tab" 38 android:summary="@string/preference_option_phone_feature_ask_to_allow" 39 android:title="@string/preference_phone_feature_notification" 40 app:allowDividerBelow="true" /> 41 42 <androidx.preference.Preference 43 android:icon="@drawable/mozac_ic_link_24" 44 android:layout="@layout/focus_preference_new_tab" 45 android:key="@string/pref_key_browser_feature_media_key_system_access" 46 android:summary="@string/preference_option_phone_feature_ask_to_allow" 47 android:title="@string/preference_phone_feature_media_key_system_access" 48 app:allowDividerBelow="true" /> 49 50 </androidx.preference.PreferenceScreen>