diff options
-rw-r--r-- | overlay/frameworks/base/core/res/res/values/config.xml | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml index 76f86f3..ec7666d 100644 --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -103,6 +103,20 @@ <!-- Workaround for devices with broken keyboards --> <!-- <bool name="config_forceDisableHardwareKeyboard">true</bool> --> + <!-- 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">65</integer> + <!-- Hardware 'face' 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: @@ -111,9 +125,11 @@ 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">7</integer> + <integer name="config_deviceHardwareKeys">83</integer> <!-- Boolean to enable stk functionality on Samsung phones --> <bool name="config_samsung_stk">true</bool> @@ -132,4 +148,4 @@ format is UMTS|LTE|... --> <string translatable="false" name="config_radio_access_family">GPRS|EDGE|UMTS|HSDPA|HSUPA|HSPA|LTE|HSPAP|GSM|WCDMA</string> -</resources> +</resources>
\ No newline at end of file |