diff options
| -rw-r--r-- | common.mk | 3 | ||||
| -rw-r--r-- | overlay-cdma/packages/apps/Settings/res/values/bool.xml | 20 | ||||
| -rwxr-xr-x | overlay-cdma/packages/services/Telephony/res/values/config.xml | 3 |
3 files changed, 25 insertions, 1 deletions
@@ -53,7 +53,8 @@ PRODUCT_PACKAGES += \ PRODUCT_COPY_FILES += \ packages/apps/Nfc/migrate_nfc.txt:system/etc/updatecmds/migrate_nfc.txt \ frameworks/base/nfc-extras/com.android.nfc_extras.xml:system/etc/permissions/com.android.nfc_extras.xml \ - frameworks/native/data/etc/android.hardware.nfc.xml:system/etc/permissions/android.hardware.nfc.xml + frameworks/native/data/etc/android.hardware.nfc.xml:system/etc/permissions/android.hardware.nfc.xml \ + frameworks/native/data/etc/android.hardware.nfc.hce.xml:system/etc/permissions/android.hardware.nfc.hce.xml # NFCEE access control ifeq ($(TARGET_BUILD_VARIANT),user) diff --git a/overlay-cdma/packages/apps/Settings/res/values/bool.xml b/overlay-cdma/packages/apps/Settings/res/values/bool.xml new file mode 100644 index 0000000..aa21d11 --- /dev/null +++ b/overlay-cdma/packages/apps/Settings/res/values/bool.xml @@ -0,0 +1,20 @@ +<?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> + <!-- Whether to show a preference item for mobile plan --> + <bool name="config_show_mobile_plan">false</bool> +</resources> diff --git a/overlay-cdma/packages/services/Telephony/res/values/config.xml b/overlay-cdma/packages/services/Telephony/res/values/config.xml index 1e05638..4c6025f 100755 --- a/overlay-cdma/packages/services/Telephony/res/values/config.xml +++ b/overlay-cdma/packages/services/Telephony/res/values/config.xml @@ -37,4 +37,7 @@ <!-- Show enabled lte option for lte device --> <bool name="config_enabled_lte" translatable="false">true</bool> + + <!-- Display carrier settings --> + <bool name="config_carrier_settings_enable">false</bool> </resources> |
