Create a config resource for OEMs to add suppressed tile's key, then DashboardFragment will filter related tiles out from Settings. OEMs can use this way to suppress security patch injected tile if they don't use Google OTA. Fixes: 130734771 Test: visual, robotests Change-Id: I4cab79c8672048fa543d39b2a8f38ffe338189c8
97 lines
5.0 KiB
XML
97 lines
5.0 KiB
XML
<!--
|
|
Copyright (C) 2017 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<resources>
|
|
<bool name="config_enableColorTemperature">false</bool>
|
|
<bool name="config_show_camera_laser_sensor">false</bool>
|
|
<bool name="config_show_connectivity_monitor">false</bool>
|
|
<bool name="config_display_recent_apps">false</bool>
|
|
<bool name="config_additional_system_update_setting_enable">true</bool>
|
|
<bool name="config_show_wifi_settings">false</bool>
|
|
<bool name="config_show_toggle_airplane">false</bool>
|
|
<bool name="config_show_private_dns_settings">false</bool>
|
|
<bool name="config_show_app_info_settings_memory">true</bool>
|
|
<bool name="config_show_app_info_settings_battery">false</bool>
|
|
<bool name="config_show_high_power_apps">false</bool>
|
|
<bool name="config_show_alarm_volume">false</bool>
|
|
<bool name="config_show_charging_sounds">false</bool>
|
|
<bool name="config_show_media_volume">false</bool>
|
|
<bool name="config_show_notification_ringtone">false</bool>
|
|
<bool name="config_show_notification_volume">false</bool>
|
|
<bool name="config_show_screen_locking_sounds">false</bool>
|
|
<bool name="config_show_touch_sounds">false</bool>
|
|
<bool name="config_show_encryption_and_credentials_encryption_status">false</bool>
|
|
<bool name="config_show_premium_sms">false</bool>
|
|
<bool name="config_show_data_saver">false</bool>
|
|
<bool name="config_show_enabled_vr_listeners">false</bool>
|
|
<bool name="config_location_mode_available">false</bool>
|
|
<bool name="config_show_location_scanning">false</bool>
|
|
<bool name="config_show_manage_device_admin">false</bool>
|
|
<bool name="config_show_unlock_set_or_change">false</bool>
|
|
<bool name="config_show_screen_pinning_settings">false</bool>
|
|
<bool name="config_show_manage_trust_agents">false</bool>
|
|
<bool name="config_show_show_password">false</bool>
|
|
<bool name="config_show_trust_agent_click_intent">false</bool>
|
|
<bool name="config_show_wallpaper_attribution">false</bool>
|
|
<bool name="config_show_assist_and_voice_input">false</bool>
|
|
<bool name="config_show_phone_language">false</bool>
|
|
<bool name="config_show_virtual_keyboard_pref">false</bool>
|
|
<bool name="config_show_physical_keyboard_pref">false</bool>
|
|
<bool name="config_show_tts_settings_summary">false</bool>
|
|
<bool name="config_show_pointer_speed">false</bool>
|
|
<bool name="config_show_vibrate_input_devices">false</bool>
|
|
<bool name="config_show_reset_dashboard">false</bool>
|
|
<bool name="config_show_system_update_settings">false</bool>
|
|
<bool name="config_show_device_model">false</bool>
|
|
<bool name="config_show_top_level_accessibility">false</bool>
|
|
<bool name="config_show_top_level_battery">false</bool>
|
|
<bool name="config_show_top_level_connected_devices">false</bool>
|
|
<bool name="config_show_top_level_display">false</bool>
|
|
<bool name="config_show_wifi_ip_address">false</bool>
|
|
<bool name="config_show_wifi_mac_address">false</bool>
|
|
<bool name="config_disable_uninstall_update">true</bool>
|
|
<bool name="config_show_device_name">false</bool>
|
|
<bool name="config_use_legacy_suggestion">false</bool>
|
|
<bool name="config_show_avatar_in_homepage">true</bool>
|
|
<bool name="config_show_branded_account_in_device_info">false</bool>
|
|
<bool name="config_show_emergency_info_in_device_info">false</bool>
|
|
|
|
<!-- Whether or not extra preview panels should be used for screen zoom setting. -->
|
|
<bool name="config_enable_extra_screen_zoom_preview">false</bool>
|
|
|
|
|
|
<!-- List of a11y components on the device allowed to be enabled by Settings Slices -->
|
|
<string-array name="config_settings_slices_accessibility_components" translatable="false">
|
|
<item>fake_package/fake_service</item>
|
|
</string-array>
|
|
|
|
<!-- List of packages that should be whitelisted for slice uri access. Do not translate -->
|
|
<string-array name="slice_whitelist_package_names" translatable="false">
|
|
<item>com.android.settings.slice_whitelist_package</item>
|
|
</string-array>
|
|
|
|
<!-- Email address for the homepage contextual cards feedback -->
|
|
<string name="config_contextual_card_feedback_email" translatable="false">test@test.test</string>
|
|
|
|
<!-- Grayscale settings intent -->
|
|
<string name="config_grayscale_settings_intent" translate="false">intent:#Intent;action=test.test;end</string>
|
|
|
|
<!-- List containing the injected tile keys which are suppressed. -->
|
|
<string-array name="config_suppress_injected_tile_keys" translatable="false">
|
|
<item>injected_tile_key</item>
|
|
</string-array>
|
|
</resources>
|