From 226c4948e3022db71f4838ad56fcbb8e7eeee647 Mon Sep 17 00:00:00 2001 From: rmp22 <195054967+rmp22@users.noreply.github.com> Date: Sun, 21 Sep 2025 21:08:56 +0800 Subject: [PATCH] config: adding flashlight strength flag Change-Id: I69f051676d6e3048307c48aead46a1b04d7b872d --- config/evolution.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/evolution.mk b/config/evolution.mk index 6d80ee42..6c29102d 100644 --- a/config/evolution.mk +++ b/config/evolution.mk @@ -79,7 +79,9 @@ endif # Other ROM feature flags BYPASS_CHARGE_SUPPORTED ?= false PERF_ANIM_OVERRIDE ?= false +TORCH_STR_SUPPORTED ?= true PRODUCT_SYSTEM_PROPERTIES += \ persist.sys.activity_anim_perf_override=$(PERF_ANIM_OVERRIDE) - persist.sys.battery_bypass_supported=$(BYPASS_CHARGE_SUPPORTED) + persist.sys.battery_bypass_supported=$(BYPASS_CHARGE_SUPPORTED) \ + persist.sys.torch_str_support=$(TORCH_STR_SUPPORTED)