Compare commits

...

4 commits

Author SHA1 Message Date
Pranav Vashi
5cbbc0cb38
sdm710-common: Use jemalloc to fix camera
[Kondros1995] We dont have this issue with MIUI camera port but lets have it just to be safe
2023-06-28 22:07:43 +03:00
markakash
8ee01b7e07
sdm710-common: overlay: Specify ambient color temperature sensor
* E DisplayPowerController[0]: failed to set up display white-balance: java.lang.IllegalStateException: cannot find sensor com.google.sensor.color
2023-06-28 22:05:28 +03:00
zeelog
4d1a783796
sdm710-common: overlay: Restore pre a13 battery warning threshold
Signed-off-by: kssrao13882 <kssrao13882@gmail.com>
2023-06-28 21:16:23 +03:00
xyyx
716938ec5d
sdm710-common: overlay: Allow to show battery percent in QS 2023-06-28 21:06:31 +03:00
3 changed files with 11 additions and 0 deletions

View file

@ -58,6 +58,7 @@ TARGET_KERNEL_VERSION := 4.9
TARGET_PROVIDES_AUDIO_EXTNS := true TARGET_PROVIDES_AUDIO_EXTNS := true
# Camera # Camera
MALLOC_SVELTE := true
MALLOC_SVELTE_FOR_LIBC32 := true MALLOC_SVELTE_FOR_LIBC32 := true
# Display # Display

View file

@ -499,4 +499,10 @@
<!-- Whether to show the Preference for Adaptive connectivity --> <!-- Whether to show the Preference for Adaptive connectivity -->
<bool name="config_show_adaptive_connectivity">false</bool> <bool name="config_show_adaptive_connectivity">false</bool>
<!-- Display low battery warning when battery level dips to this value -->
<integer name="config_lowBatteryWarningLevel">15</integer>
<!-- See AmbientSensor.AmbientColorTemperatureSensor. The ambient color temperature sensor name. -->
<string name="config_displayWhiteBalanceColorTemperatureSensorName">com.google.sensor.color</string>
</resources> </resources>

View file

@ -30,5 +30,9 @@
<!-- Update battery info every second when device is charging --> <!-- Update battery info every second when device is charging -->
<bool name="config_alternateFastchargeInfoUpdate">true</bool> <bool name="config_alternateFastchargeInfoUpdate">true</bool>
<!-- Whether to show estimate in QS header. Default to false in case there's not enough
space -->
<bool name="config_showBatteryEstimateQSBH">true</bool>
</resources> </resources>