config.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright (C) 2024 The LineageOS Project
  4. SPDX-License-Identifier: Apache-2.0
  5. -->
  6. <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
  7. <!-- Shutdown if the battery temperature exceeds (this value * 0.1) Celsius. -->
  8. <integer name="config_shutdownBatteryTemperature">580</integer>
  9. <!-- Doze: should the TYPE_PICK_UP_GESTURE sensor be used as a pulse signal. -->
  10. <bool name="config_dozePulsePickup">true</bool>
  11. <!-- Power Management: Specifies whether to decouple the auto-suspend state of the
  12. device from the display on/off state.
  13. When false, autosuspend_disable() will be called before the display is turned on
  14. and autosuspend_enable() will be called after the display is turned off.
  15. This mode provides best compatibility for devices using legacy power management
  16. features such as early suspend / late resume.
  17. When true, autosuspend_display() and autosuspend_enable() will be called
  18. independently of whether the display is being turned on or off. This mode
  19. enables the power manager to suspend the application processor while the
  20. display is on.
  21. This resource should be set to "true" when a doze component has been specified
  22. to maximize power savings but not all devices support it.
  23. Refer to autosuspend.h for details.
  24. -->
  25. <bool name="config_powerDecoupleAutoSuspendModeFromDisplay">true</bool>
  26. <!-- Power Management: Specifies whether to decouple the interactive state of the
  27. device from the display on/off state.
  28. When false, setInteractive(..., true) will be called before the display is turned on
  29. and setInteractive(..., false) will be called after the display is turned off.
  30. This mode provides best compatibility for devices that expect the interactive
  31. state to be tied to the display state.
  32. When true, setInteractive(...) will be called independently of whether the display
  33. is being turned on or off. This mode enables the power manager to reduce
  34. clocks and disable the touch controller while the display is on.
  35. This resource should be set to "true" when a doze component has been specified
  36. to maximize power savings but not all devices support it.
  37. Refer to power.h for details.
  38. -->
  39. <bool name="config_powerDecoupleInteractiveModeFromDisplay">true</bool>
  40. <!-- Whether the new Auto Selection Network UI should be shown -->
  41. <bool name="config_enableNewAutoSelectNetworkUI">true</bool>
  42. <!-- If true, the display will be shifted around in ambient mode. -->
  43. <bool name="config_enableBurnInProtection">true</bool>
  44. <!-- Whether device supports double tap to wake -->
  45. <bool name="config_supportDoubleTapWake">true</bool>
  46. </resources>