diff options
author | davidevinavil <davidevinavil@gmail.com> | 2017-05-06 11:29:30 +0200 |
---|---|---|
committer | davidevinavil <davidevinavil@gmail.com> | 2017-05-06 11:29:30 +0200 |
commit | 27c6808d5cdea191cb543d2f82213ff75db33fe4 (patch) | |
tree | ef7fa09b51120e5df1370f2d8d54213e947543ce /overlay | |
parent | 3f016ac4342a3ba18c2b691c9a633edc901edc53 (diff) |
overlay: Fix buttons.xml
Diffstat (limited to 'overlay')
-rw-r--r-- | overlay/packages/apps/Extensions/res/xml/buttons.xml | 10 | ||||
-rw-r--r-- | overlay/packages/apps/Settings/res/values/config.xml | 35 |
2 files changed, 36 insertions, 9 deletions
diff --git a/overlay/packages/apps/Extensions/res/xml/buttons.xml b/overlay/packages/apps/Extensions/res/xml/buttons.xml index ee62620..2787fc0 100644 --- a/overlay/packages/apps/Extensions/res/xml/buttons.xml +++ b/overlay/packages/apps/Extensions/res/xml/buttons.xml @@ -62,14 +62,6 @@ android:defaultValue="true" android:dependency="volume_rocker_wake" /> - <ListPreference - android:key="volume_key_cursor_control" - android:dialogTitle="@string/volbtn_cursor_control_title" - android:title="@string/volbtn_cursor_control_title" - android:entries="@array/volbtn_cursor_control_entries" - android:entryValues="@array/volbtn_cursor_control_values" - android:persistent="false" /> - </PreferenceCategory> <PreferenceCategory @@ -182,4 +174,4 @@ </PreferenceCategory> -</PreferenceScreen> +</PreferenceScreen>
\ No newline at end of file diff --git a/overlay/packages/apps/Settings/res/values/config.xml b/overlay/packages/apps/Settings/res/values/config.xml new file mode 100644 index 0000000..00b8b54 --- /dev/null +++ b/overlay/packages/apps/Settings/res/values/config.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + + <!-- Config voice over lte in wireless settings begin --> + <bool name="config_voice_over_lte_enabled">true</bool> + <!-- Config voice over lte in wireless settings end --> + + <!-- Defines the location of the fingerprint sensor on the device + 0 = back + 1 = front + 2 = left side + 3 = right side + --> + <integer name="config_fingerprintSensorLocation">1</integer> + + <!-- does the device have multi color led support or only + a fixed set of led colors --> + <bool name="config_has_multi_color_led">false</bool> + +</resources> |