1<!-- 2 Copyright (C) 2017 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 --> 16 17<resources> 18 <bool name="config_enableColorTemperature">false</bool> 19 <bool name="config_show_camera_laser_sensor">false</bool> 20 <bool name="config_show_connectivity_monitor">false</bool> 21 <bool name="config_display_recent_apps">false</bool> 22 <bool name="config_additional_system_update_setting_enable">true</bool> 23 <bool name="config_show_wifi_settings">false</bool> 24 <bool name="config_show_toggle_airplane">false</bool> 25 <bool name="config_show_private_dns_settings">false</bool> 26 <bool name="config_show_app_info_settings_memory">true</bool> 27 <bool name="config_show_app_info_settings_battery">false</bool> 28 <bool name="config_show_high_power_apps">false</bool> 29 <bool name="config_show_alarm_volume">false</bool> 30 <bool name="config_show_charging_sounds">false</bool> 31 <bool name="config_show_media_volume">false</bool> 32 <bool name="config_show_notification_ringtone">false</bool> 33 <bool name="config_show_notification_volume">false</bool> 34 <bool name="config_show_screen_locking_sounds">false</bool> 35 <bool name="config_show_touch_sounds">false</bool> 36 <bool name="config_show_encryption_and_credentials_encryption_status">false</bool> 37 <bool name="config_show_premium_sms">false</bool> 38 <bool name="config_show_data_saver">false</bool> 39 <bool name="config_show_enabled_vr_listeners">false</bool> 40 <bool name="config_location_mode_available">false</bool> 41 <bool name="config_show_location_scanning">false</bool> 42 <bool name="config_show_manage_device_admin">false</bool> 43 <bool name="config_show_unlock_set_or_change">false</bool> 44 <bool name="config_show_screen_pinning_settings">false</bool> 45 <bool name="config_show_manage_trust_agents">false</bool> 46 <bool name="config_show_show_password">false</bool> 47 <bool name="config_show_trust_agent_click_intent">false</bool> 48 <bool name="config_show_wallpaper_attribution">false</bool> 49 <bool name="config_show_assist_and_voice_input">false</bool> 50 <bool name="config_show_phone_language">false</bool> 51 <bool name="config_show_virtual_keyboard_pref">false</bool> 52 <bool name="config_show_physical_keyboard_pref">false</bool> 53 <bool name="config_show_tts_settings_summary">false</bool> 54 <bool name="config_show_pointer_speed">false</bool> 55 <bool name="config_show_vibrate_input_devices">false</bool> 56 <bool name="config_show_reset_dashboard">false</bool> 57 <bool name="config_show_system_update_settings">false</bool> 58 <bool name="config_show_device_model">false</bool> 59 <bool name="config_show_top_level_accessibility">false</bool> 60 <bool name="config_show_top_level_battery">false</bool> 61 <bool name="config_show_top_level_connected_devices">false</bool> 62 <bool name="config_show_top_level_display">false</bool> 63 <bool name="config_show_wifi_ip_address">false</bool> 64 <bool name="config_show_wifi_mac_address">false</bool> 65 <bool name="config_disable_uninstall_update">true</bool> 66 <bool name="config_show_device_name">false</bool> 67 <bool name="config_use_legacy_suggestion">false</bool> 68 <bool name="config_show_avatar_in_homepage">true</bool> 69 <bool name="config_show_branded_account_in_device_info">false</bool> 70 <bool name="config_show_emergency_info_in_device_info">false</bool> 71 72 <!-- Whether or not extra preview panels should be used for screen zoom setting. --> 73 <bool name="config_enable_extra_screen_zoom_preview">false</bool> 74 75 76 <!-- List of a11y components on the device allowed to be enabled by Settings Slices --> 77 <string-array name="config_settings_slices_accessibility_components" translatable="false"> 78 <item>fake_package/fake_service</item> 79 </string-array> 80 81 <!-- List of packages that should be whitelisted for slice uri access. Do not translate --> 82 <string-array name="slice_whitelist_package_names" translatable="false"> 83 <item>com.android.settings.slice_whitelist_package</item> 84 </string-array> 85 86 <!-- Email address for the homepage contextual cards feedback --> 87 <string name="config_contextual_card_feedback_email" translatable="false">test@test.test</string> 88 89 <!-- Grayscale settings intent --> 90 <string name="config_grayscale_settings_intent" translate="false">intent:#Intent;action=test.test;end</string> 91 92 <!-- List containing the injected tile keys which are suppressed. --> 93 <string-array name="config_suppress_injected_tile_keys" translatable="false"> 94 <item>injected_tile_key</item> 95 </string-array> 96</resources> 97