universal7885: overlay: Add evox specific overlays

This commit is contained in:
roynatech2544 2023-11-26 12:22:33 +09:00
commit 289ce8f5f9
No known key found for this signature in database
GPG key ID: 389DAC92CAECBBCC
3 changed files with 33 additions and 0 deletions

View file

@ -773,4 +773,18 @@
<!-- Whether we use large screen shade header which takes only one row compared to QS header --> <!-- Whether we use large screen shade header which takes only one row compared to QS header -->
<bool name="config_use_large_screen_shade_header">true</bool> <bool name="config_use_large_screen_shade_header">true</bool>
<!-- ROM Specific -->
<!-- EvoX -->
<!-- Does the device have a notification led -->
<bool name="config_hasNotificationLed">false</bool>
<!-- Does the battery LED support multiple colors?
Used to decide if the user can change the colors -->
<bool name="config_multiColorBatteryLed">false</bool>
<!-- Path to fast charging status file to detect whether an oem fast charger is active -->
<string name="config_oemFastChargerStatusPath" translatable="false">/sys/class/sec/switch/afc_disable</string>
<!-- Expected value from fast charging status file -->
<string name="config_oemFastChargerStatusValue" translatable="false">0</string>
<!-- Whether the device supports Smart Pixels -->
<bool name="config_supportSmartPixels">true</bool>
</resources> </resources>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2019-2023 Evolution X
SPDX-License-Identifier: Apache-2.0
-->
<resources>
<!-- The battery current divider, some kernel report current value in mA other in µA.
Leave 1 if you have mA, put 1000 if you have µA-->
<integer name="config_currentInfoDivider" translatable="false">1</integer>
</resources>

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2019-2023 Evolution X
SPDX-License-Identifier: Apache-2.0
-->
<resources>
<!-- Whether to enable Lineage Fast Charge Prefernece -->
<bool name="config_lineageFastChargeSupported">true</bool>
</resources>