cleanup overlay
This commit is contained in:
parent
998eb6d33a
commit
0aad327162
11 changed files with 33 additions and 361 deletions
|
@ -21,4 +21,9 @@
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<!-- Whether to allow process with media UID to access CameraServiceProxy -->
|
<!-- Whether to allow process with media UID to access CameraServiceProxy -->
|
||||||
<bool name="config_allowMediaUidForCameraServiceProxy">true</bool>
|
<bool name="config_allowMediaUidForCameraServiceProxy">true</bool>
|
||||||
|
|
||||||
|
<!-- Certain sensor firmwares break with having a batch
|
||||||
|
size set. By setting this to false, devices can opt
|
||||||
|
out of setting a batch size, which fixes rotation. -->
|
||||||
|
<bool name="config_useDefaultBatchingForAccel">false</bool>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
@ -20,4 +20,32 @@
|
||||||
This MUST NOT be set to true on devices produced in 2016 or later -->
|
This MUST NOT be set to true on devices produced in 2016 or later -->
|
||||||
<bool name="config_trustLegacyEncryption">true</bool>
|
<bool name="config_trustLegacyEncryption">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">83</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">65</integer>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
@ -1,161 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2015 The CyanogenMod Project
|
|
||||||
2017-2018 The LineageOS 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>
|
|
||||||
<!-- All the capabilities of the LEDs on this device, stored as a bit field.
|
|
||||||
This integer should equal the sum of the corresponding value for each
|
|
||||||
of the following capabilities present:
|
|
||||||
|
|
||||||
// Device has a color adjustable battery light.
|
|
||||||
LIGHTS_RGB_NOTIFICATION_LED = 1
|
|
||||||
|
|
||||||
// Device has a color adjustable notification light.
|
|
||||||
LIGHTS_RGB_BATTERY_LED = 2
|
|
||||||
|
|
||||||
LIGHTS_MULTIPLE_NOTIFICATION_LED = 4 (deprecated)
|
|
||||||
|
|
||||||
// The notification light has adjustable pulsing capability.
|
|
||||||
LIGHTS_PULSATING_LED = 8
|
|
||||||
|
|
||||||
// Device has a multi-segment battery light that is able to
|
|
||||||
// use the light brightness value to determine how many
|
|
||||||
// segments to show (in order to represent battery level).
|
|
||||||
LIGHTS_SEGMENTED_BATTERY_LED = 16
|
|
||||||
|
|
||||||
// The notification light supports HAL adjustable brightness
|
|
||||||
// via the alpha channel.
|
|
||||||
// Note: if a device notification light supports LIGHTS_RGB_NOTIFICATION_LED
|
|
||||||
// then HAL support is not necessary for brightness control. In this case,
|
|
||||||
// brightness support will be provided by lineage-sdk through the scaling of
|
|
||||||
// RGB color values.
|
|
||||||
LIGHTS_ADJUSTABLE_NOTIFICATION_LED_BRIGHTNESS = 32
|
|
||||||
|
|
||||||
// Device has a battery light.
|
|
||||||
LIGHTS_BATTERY_LED = 64
|
|
||||||
|
|
||||||
// The battery light supports HAL adjustable brightness via
|
|
||||||
// the alpha channel.
|
|
||||||
// Note: if a device battery light supports LIGHTS_RGB_BATTERY_LED then HAL
|
|
||||||
// support is not necessary for brightness control. In this case,
|
|
||||||
// brightness support will be provided by lineage-sdk through the scaling of
|
|
||||||
// RGB color values.
|
|
||||||
LIGHTS_ADJUSTABLE_BATTERY_LED_BRIGHTNESS = 128
|
|
||||||
|
|
||||||
For example, a device with notification and battery lights that supports
|
|
||||||
pulsating and RGB control would set this config to 75. -->
|
|
||||||
<integer name="config_deviceLightCapabilities">0</integer>
|
|
||||||
|
|
||||||
<!-- 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">83</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">65</integer>
|
|
||||||
|
|
||||||
<!-- Control the behavior when the user long presses the home button.
|
|
||||||
0 - Nothing
|
|
||||||
1 - Menu key
|
|
||||||
2 - Recent apps view in SystemUI
|
|
||||||
3 - Launch assist intent
|
|
||||||
4 - Voice Search
|
|
||||||
5 - In-app Search
|
|
||||||
6 - Launch camera
|
|
||||||
7 - Sleep
|
|
||||||
8 - Last app
|
|
||||||
9 - Toggle split screen
|
|
||||||
This needs to match the enums in
|
|
||||||
sdk/src/java/org/lineageos/internal/util/DeviceKeysConstants.java.
|
|
||||||
-->
|
|
||||||
<!-- <integer name="config_longPressOnHomeBehavior">3</integer> -->
|
|
||||||
|
|
||||||
<!-- Control the behavior when the user double-taps the home button.
|
|
||||||
0 - Nothing
|
|
||||||
1 - Menu key
|
|
||||||
2 - Recent apps view in SystemUI
|
|
||||||
3 - Launch assist intent
|
|
||||||
4 - Voice Search
|
|
||||||
5 - In-app Search
|
|
||||||
6 - Launch camera
|
|
||||||
7 - Sleep
|
|
||||||
8 - Last app
|
|
||||||
9 - Toggle split screen
|
|
||||||
This needs to match the enums in
|
|
||||||
sdk/src/java/org/lineageos/internal/util/DeviceKeysConstants.java.
|
|
||||||
-->
|
|
||||||
<!-- <integer name="config_doubleTapOnHomeBehavior">0</integer> -->
|
|
||||||
|
|
||||||
<!-- Control the behavior when the user long presses the menu button.
|
|
||||||
0 - Nothing
|
|
||||||
1 - Menu key
|
|
||||||
2 - Recent apps view in SystemUI
|
|
||||||
3 - Launch assist intent
|
|
||||||
4 - Voice Search
|
|
||||||
5 - In-app Search
|
|
||||||
6 - Launch camera
|
|
||||||
7 - Sleep
|
|
||||||
8 - Last app
|
|
||||||
9 - Toggle split screen
|
|
||||||
This needs to match the enums in
|
|
||||||
sdk/src/java/org/lineageos/internal/util/DeviceKeysConstants.java.
|
|
||||||
-->
|
|
||||||
<!-- <integer name="config_longPressOnMenuBehavior">2</integer> -->
|
|
||||||
|
|
||||||
<!-- Control the behavior when the user long presses the app switch button.
|
|
||||||
0 - Nothing
|
|
||||||
1 - Menu key
|
|
||||||
2 - Recent apps view in SystemUI
|
|
||||||
3 - Launch assist intent
|
|
||||||
4 - Voice Search
|
|
||||||
5 - In-app Search
|
|
||||||
6 - Launch camera
|
|
||||||
7 - Sleep
|
|
||||||
8 - Last app
|
|
||||||
9 - Toggle split screen
|
|
||||||
This needs to match the enums in
|
|
||||||
sdk/src/java/org/lineageos/internal/util/DeviceKeysConstants.java.
|
|
||||||
-->
|
|
||||||
<!-- <integer name="config_longPressOnAppSwitchBehavior">9</integer> -->
|
|
||||||
|
|
||||||
<!-- Defines the actions shown in advanced reboot submenu -->
|
|
||||||
<string-array name="config_restartActionsList">
|
|
||||||
<item>restart</item>
|
|
||||||
<item>restart_recovery</item>
|
|
||||||
<item>restart_download</item>
|
|
||||||
</string-array>
|
|
||||||
|
|
||||||
</resources>
|
|
|
@ -1,38 +0,0 @@
|
||||||
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
|
|
||||||
<!--
|
|
||||||
/*
|
|
||||||
** Copyright 2017, The LineageOS 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.
|
|
||||||
*/
|
|
||||||
-->
|
|
||||||
|
|
||||||
<carrier_config_list>
|
|
||||||
<carrier_config>
|
|
||||||
<boolean name="apn_expand_bool" value="true" />
|
|
||||||
<boolean name="world_phone_bool" value="true" />
|
|
||||||
<boolean name="allow_adding_apns_bool" value="true" />
|
|
||||||
<boolean name="show_cdma_choices_bool" value="true" />
|
|
||||||
<boolean name="show_apn_setting_cdma_bool" value="true" />
|
|
||||||
</carrier_config>
|
|
||||||
|
|
||||||
<carrier_config mcc="204" mnc="04" gid1="BAE0000000000000">
|
|
||||||
<boolean name="disable_cdma_activation_code_bool" value="true" />
|
|
||||||
</carrier_config>
|
|
||||||
<carrier_config mcc="310" mnc="004">
|
|
||||||
<boolean name="disable_cdma_activation_code_bool" value="true" />
|
|
||||||
</carrier_config>
|
|
||||||
<carrier_config mcc="310" mnc="480">
|
|
||||||
<boolean name="disable_cdma_activation_code_bool" value="true" />
|
|
||||||
</carrier_config>
|
|
||||||
</carrier_config_list>
|
|
|
@ -1,26 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--
|
|
||||||
/*
|
|
||||||
** Copyright 2013, 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>
|
|
||||||
<!-- If true, enable the "import contacts from SIM" feature if the device
|
|
||||||
has an appropriate SIM or ICC card.
|
|
||||||
Setting this flag to false in a resource overlay allows you to
|
|
||||||
entirely disable SIM import on a per-product basis. -->
|
|
||||||
<bool name="config_allow_sim_import">false</bool>
|
|
||||||
</resources>
|
|
|
@ -1,26 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--
|
|
||||||
/*
|
|
||||||
** Copyright 2013, 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>
|
|
||||||
<!-- If true, enable the "import contacts from SIM" feature if the device
|
|
||||||
has an appropriate SIM or ICC card.
|
|
||||||
Setting this flag to false in a resource overlay allows you to
|
|
||||||
entirely disable SIM import on a per-product basis. -->
|
|
||||||
<bool name="config_allow_sim_import">false</bool>
|
|
||||||
</resources>
|
|
|
@ -1,26 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--
|
|
||||||
/*
|
|
||||||
** Copyright 2013, 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>
|
|
||||||
<!-- If true, enable the "import contacts from SIM" feature if the device
|
|
||||||
has an appropriate SIM or ICC card.
|
|
||||||
Setting this flag to false in a resource overlay allows you to
|
|
||||||
entirely disable SIM import on a per-product basis. -->
|
|
||||||
<bool name="config_allow_sim_import">false</bool>
|
|
||||||
</resources>
|
|
|
@ -1,26 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--
|
|
||||||
/*
|
|
||||||
** Copyright 2013, 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>
|
|
||||||
<!-- If true, enable the "import contacts from SIM" feature if the device
|
|
||||||
has an appropriate SIM or ICC card.
|
|
||||||
Setting this flag to false in a resource overlay allows you to
|
|
||||||
entirely disable SIM import on a per-product basis. -->
|
|
||||||
<bool name="config_allow_sim_import">false</bool>
|
|
||||||
</resources>
|
|
|
@ -1,20 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2016 The CyanogenMod 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>
|
|
||||||
<bool name="call_recording_enabled">true</bool>
|
|
||||||
<integer name="call_recording_audio_source">4</integer>
|
|
||||||
</resources>
|
|
|
@ -1,29 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--
|
|
||||||
/*
|
|
||||||
**
|
|
||||||
** Copyright 2015 The Android Open Source Project
|
|
||||||
** 2017 The LineageOS 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>
|
|
||||||
<!-- IDs for each color mode. The values must match the corresponding constants in
|
|
||||||
android.view.Display -->
|
|
||||||
<integer-array name="color_mode_ids">
|
|
||||||
<item>0</item>
|
|
||||||
<item>-1</item>
|
|
||||||
<item>-1</item>
|
|
||||||
</integer-array>
|
|
||||||
</resources>
|
|
|
@ -19,13 +19,4 @@
|
||||||
<resources>
|
<resources>
|
||||||
<!-- This device implements a noise suppression device for in call audio-->
|
<!-- This device implements a noise suppression device for in call audio-->
|
||||||
<bool name="has_in_call_noise_suppression">true</bool>
|
<bool name="has_in_call_noise_suppression">true</bool>
|
||||||
|
|
||||||
<!-- Flag indicating if network query through TelephonyManager.requestNetworkScan() should be
|
|
||||||
disabled.
|
|
||||||
If set to true, it will send network query through Phone.getAvailableNetworks() directly
|
|
||||||
rather than attempt to query through TelephonyManager.requestNetworkScan() first. -->
|
|
||||||
<bool name="config_disable_TelephonyManager_network_scan">true</bool>
|
|
||||||
|
|
||||||
<!-- Show enabled lte option for lte device -->
|
|
||||||
<bool name="config_enabled_lte" translatable="false">true</bool>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
Loading…
Add table
Reference in a new issue