diff options
author | Fedor917 <cryscript@gmail.com> | 2016-11-10 16:01:55 +0700 |
---|---|---|
committer | Fedor917 <cryscript@gmail.com> | 2016-11-10 16:01:55 +0700 |
commit | 70726530150e5fb506f1931402785dac40edb353 (patch) | |
tree | c9f0e382784a0cd72615b7e160fd384bfff952bc /overlay/packages | |
parent | b78b3489637b4008a2b3a8c2670df7390b79d1a8 (diff) |
Edit overlay
Diffstat (limited to 'overlay/packages')
-rw-r--r-- | overlay/packages/apps/CarrierConfig/res/xml/vendor.xml | 4 | ||||
-rwxr-xr-x | overlay/packages/apps/CellBroadcastReceiver/res/values/config.xml | 29 |
2 files changed, 33 insertions, 0 deletions
diff --git a/overlay/packages/apps/CarrierConfig/res/xml/vendor.xml b/overlay/packages/apps/CarrierConfig/res/xml/vendor.xml index 90fba3a..1b3fad6 100644 --- a/overlay/packages/apps/CarrierConfig/res/xml/vendor.xml +++ b/overlay/packages/apps/CarrierConfig/res/xml/vendor.xml @@ -1,7 +1,11 @@ <?xml version='1.0' encoding='utf-8' standalone='yes' ?> <carrier_config_list> <carrier_config> + <!-- Flag indicating if the phone is a world phone --> <boolean name="world_phone_bool" value="true" /> + <!-- Flag indicating if dtmf tone type is enabled --> + <bool name="dtmf_type_enabled_bool">true</bool> + <!-- Show cdma auto network mode in (global) roaming --> <boolean name="show_cdma_choices_bool" value="true" /> </carrier_config> </carrier_config_list> diff --git a/overlay/packages/apps/CellBroadcastReceiver/res/values/config.xml b/overlay/packages/apps/CellBroadcastReceiver/res/values/config.xml new file mode 100755 index 0000000..d1d5fab --- /dev/null +++ b/overlay/packages/apps/CellBroadcastReceiver/res/values/config.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!--Copyright (c) 2012, The Linux Foundation. All rights reserved. + + Not a Contribution, Apache license notifications and license are retained + for attribution purposes only. + + 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> + <!-- Whether to enable ETWS settings (Japan) --> + <bool name="show_etws_settings">true</bool> + <!-- Whether to enable CMAS settings (United States) --> + <bool name="show_cmas_settings">true</bool> + <!-- Whether to enable channel 50 settings (Brazil) --> + <bool name="show_brazil_settings">true</bool> + <!-- Whether to enable channel 50 and 60 settings (India) + <bool name="show_india_settings">true</bool> --> +</resources> |