diff options
Diffstat (limited to 'overlay')
| -rw-r--r-- | overlay/frameworks/base/core/res/res/values/config.xml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml index 9c5c5ba..ab8448b 100644 --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -213,4 +213,46 @@ <!-- Component name of the combo network location provider. --> <string name="config_comboNetworkLocationProvider" translatable="false">com.qualcomm.location</string> + + <!-- Display mode remapping table. + If the mode names returned by the backend do not match + the predefined and translated strings in the Settings + app, they can be remapped here. The format is + "oldname:newname", one per entry. --> + <string-array name="config_displayModeMappings" translatable="false"> + <item>00default:standard</item> + <item>sRGB_d65:srgb</item> + <item>srgb_d65:srgb</item> + </string-array> + + <!-- Should we filter any display modes which are unampped? --> + <bool name="config_filterDisplayModes">true</bool> + + <!-- Hardware 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: + 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_deviceHardwareKeys">64</integer> + + <!-- 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">64</integer> </resources> |
