mirror of
https://github.com/PixelExperience-Devices/device_xiaomi_miatoll.git
synced 2025-08-04 15:54:19 +09:00
The config has been removed since the centered display cutout is now programatically detected. Change-Id: Idcb96fe444c555a4110f7ed94e7774b413e35c33
82 lines
3.6 KiB
XML
82 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2022 The LineageOS Project
|
|
SPDX-License-Identifier: Apache-2.0
|
|
-->
|
|
<resources>
|
|
|
|
<!-- Hardware keys present on the device, stored as a bit field.
|
|
This integer should equal the sum of the corresponding value for each
|
|
of the following keys present:
|
|
1 - Home
|
|
2 - Back
|
|
4 - Menu
|
|
8 - Assistant (search)
|
|
16 - App switch
|
|
32 - Camera
|
|
64 - Volume rocker
|
|
For example, a device with Home, Back and Menu keys would set this
|
|
config to 7. -->
|
|
<integer name="config_deviceHardwareKeys">64</integer>
|
|
|
|
<!-- Hardware keys present on the device with the ability to wake, stored as a bit field.
|
|
This integer should equal the sum of the corresponding value for each
|
|
of the following keys present:
|
|
1 - Home
|
|
2 - Back
|
|
4 - Menu
|
|
8 - Assistant (search)
|
|
16 - App switch
|
|
32 - Camera
|
|
64 - Volume rocker
|
|
For example, a device with Home, Back and Menu keys would set this
|
|
config to 7. -->
|
|
<integer name="config_deviceHardwareWakeKeys">64</integer>
|
|
|
|
<!-- All the capabilities of the LEDs on this device, stored as a bit field.
|
|
This integer should equal the sum of the corresponding value for each
|
|
of the following capabilities present:
|
|
// Device has a color adjustable battery light.
|
|
LIGHTS_RGB_NOTIFICATION_LED = 1
|
|
// Device has a color adjustable notification light.
|
|
LIGHTS_RGB_BATTERY_LED = 2
|
|
LIGHTS_MULTIPLE_NOTIFICATION_LED = 4 (deprecated)
|
|
// The notification light has adjustable pulsing capability.
|
|
LIGHTS_PULSATING_LED = 8
|
|
// Device has a multi-segment battery light that is able to
|
|
// use the light brightness value to determine how many
|
|
// segments to show (in order to represent battery level).
|
|
LIGHTS_SEGMENTED_BATTERY_LED = 16
|
|
// The notification light supports HAL adjustable brightness
|
|
// via the alpha channel.
|
|
// Note: if a device notification light supports LIGHTS_RGB_NOTIFICATION_LED
|
|
// then HAL support is not necessary for brightness control. In this case,
|
|
// brightness support will be provided by lineage-sdk through the scaling of
|
|
// RGB color values.
|
|
LIGHTS_ADJUSTABLE_NOTIFICATION_LED_BRIGHTNESS = 32
|
|
// Device has a battery light.
|
|
LIGHTS_BATTERY_LED = 64
|
|
// The battery light supports HAL adjustable brightness via
|
|
// the alpha channel.
|
|
// Note: if a device battery light supports LIGHTS_RGB_BATTERY_LED then HAL
|
|
// support is not necessary for brightness control. In this case,
|
|
// brightness support will be provided by lineage-sdk through the scaling of
|
|
// RGB color values.
|
|
LIGHTS_ADJUSTABLE_BATTERY_LED_BRIGHTNESS = 128
|
|
For example, a device with notification and battery lights that supports
|
|
pulsating and RGB control would set this config to 75. -->
|
|
<integer name="config_deviceLightCapabilities">232</integer>
|
|
|
|
<!-- Whether device has screen with higher aspect ratio -->
|
|
<bool name="config_haveHigherAspectRatioScreen">true</bool>
|
|
|
|
<!-- Defines the actions shown in advanced reboot submenu -->
|
|
<string-array name="config_restartActionsList">
|
|
<item>restart</item>
|
|
<item>restart_recovery</item>
|
|
<item>restart_bootloader</item>
|
|
<item>restart_fastboot</item>
|
|
</string-array>
|
|
|
|
</resources>
|