123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- Copyright (C) 2024 The LineageOS Project
- SPDX-License-Identifier: Apache-2.0
- -->
- <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
- <!-- Whether a software navigation bar should be shown. NOTE: in the future this may be
- autodetected from the Configuration. -->
- <bool name="config_showNavigationBar">true</bool>
- <!-- Control whether the always on display mode is available. This should only be enabled on
- devices where the display has been tuned to be power efficient in DOZE and/or DOZE_SUSPEND
- states. -->
- <bool name="config_dozeAlwaysOnDisplayAvailable">true</bool>
- <!-- Control whether the always on display mode is enabled by default. This value will be used
- during initialization when the setting is still null. -->
- <bool name="config_dozeAlwaysOnEnabled">false</bool>
- <!-- When true use the linux /dev/input/event subsystem to detect the switch changes
- on the headphone/microphone jack. When false use the older uevent framework. -->
- <bool name="config_useDevInputEventForAudioJack">true</bool>
- <!-- Default files to pin via Pinner Service -->
- <string-array name="config_defaultPinnerServiceFiles" translatable="false">
- <item>/system/framework/framework.jar</item>
- <item>/system/framework/services.jar</item>
- <item>/system/bin/surfaceflinger</item>
- </string-array>
- <!-- Whether the device enable the standalone (SA) mode of 5G NR.-->
- <bool name="config_telephony5gStandalone">true</bool>
- <!-- Whether the device enable the non-standalone (NSA) mode of 5G NR.-->
- <bool name="config_telephony5gNonStandalone">true</bool>
- </resources>
|