diff options
| author | 2024-12-04 17:58:09 +0000 | |
|---|---|---|
| committer | 2024-12-04 18:53:48 +0000 | |
| commit | 96bb780c993cc4d2edbfaaebc2b4157d1b44cdeb (patch) | |
| tree | e4fd2d4141f76c89178fb1a7149ea4a8cac85a2a | |
| parent | 6f7d907f1f312de9a38ecbbbbeb2eefd28b0efc8 (diff) | |
Remove unused config_walletDoubleTapPowerGestureEnabled
Bug: 382270382
Test: Treehugger passes
FLAG: android.service.quickaccesswallet.launch_wallet_option_on_power_double_tap
Change-Id: I1e7100072bee4cbd42f324c9e225afc0a598545f
| -rw-r--r-- | core/res/res/values/config.xml | 7 | ||||
| -rw-r--r-- | core/res/res/values/symbols.xml | 3 |
2 files changed, 4 insertions, 6 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index 13c125cb7349..53b47622e8ae 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -4228,13 +4228,12 @@ must match the value of config_cameraLaunchGestureSensorType in OEM's HAL --> <string translatable="false" name="config_cameraLaunchGestureSensorStringType"></string> - <!-- Allow the gesture to double tap the power button to trigger a target action. --> - <bool name="config_doubleTapPowerGestureEnabled">true</bool> <!-- Allow the gesture to double tap the power button twice to start the camera while the device is non-interactive. --> <bool name="config_cameraDoubleTapPowerGestureEnabled">true</bool> - <!-- Allow the gesture to double tap the power button twice to launch the wallet. --> - <bool name="config_walletDoubleTapPowerGestureEnabled">true</bool> + + <!-- Allow the gesture to double tap the power button to trigger a target action. --> + <bool name="config_doubleTapPowerGestureEnabled">true</bool> <!-- Default target action for double tap of the power button gesture. 0: Launch camera 1: Launch wallet --> diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index 2671ff90b35f..9680c1d5b8ec 100644 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -3161,9 +3161,8 @@ <java-symbol type="string" name="config_cameraLaunchGestureSensorStringType" /> <java-symbol type="integer" name="config_cameraLiftTriggerSensorType" /> <java-symbol type="string" name="config_cameraLiftTriggerSensorStringType" /> - <java-symbol type="bool" name="config_doubleTapPowerGestureEnabled" /> <java-symbol type="bool" name="config_cameraDoubleTapPowerGestureEnabled" /> - <java-symbol type="bool" name="config_walletDoubleTapPowerGestureEnabled" /> + <java-symbol type="bool" name="config_doubleTapPowerGestureEnabled" /> <java-symbol type="integer" name="config_defaultDoubleTapPowerGestureAction" /> <java-symbol type="bool" name="config_emergencyGestureEnabled" /> <java-symbol type="bool" name="config_defaultEmergencyGestureEnabled" /> |