diff options
-rw-r--r-- | overlay-radio/frameworks/base/core/res/res/values/config.xml | 16 | ||||
-rw-r--r-- | overlay/frameworks/base/core/res/res/values/config.xml | 10 |
2 files changed, 7 insertions, 19 deletions
diff --git a/overlay-radio/frameworks/base/core/res/res/values/config.xml b/overlay-radio/frameworks/base/core/res/res/values/config.xml index 8890e2a..7c7a4ba 100644 --- a/overlay-radio/frameworks/base/core/res/res/values/config.xml +++ b/overlay-radio/frameworks/base/core/res/res/values/config.xml @@ -69,16 +69,14 @@ <!-- The default iface on which to monitor data use --> <string name="config_datause_iface" translatable="false">rmnet0</string> - <!-- National language single shift tables to enable for SMS encoding. - Decoding is always enabled. 3GPP TS 23.038 states that this feature - should not be enabled until a formal request is issued by the relevant - national regulatory body. Array elements are codes from the table above. - Example 1: devices sold in Turkey must include table 1 to conform with - By-Law Number 27230. (http://www.btk.gov.tr/eng/pdf/2009/BY-LAW_SMS.pdf) - Example 2: devices sold in India should include tables 4 through 13 - to enable use of the new Release 9 tables for Indic languages. --> - <integer-array name="config_sms_enabled_single_shift_tables"> + <!-- Array of allowable ConnectivityManager network types for tethering --> + <!-- Common options are [1, 4] for TYPE_WIFI and TYPE_MOBILE_DUN or + [0,1,5,7] for TYPE_MOBILE, TYPE_WIFI, TYPE_MOBILE_HIPRI and TYPE_BLUETOOTH --> + <integer-array translatable="false" name="config_tether_upstream_types"> + <item>0</item> <item>1</item> + <item>5</item> + <item>7</item> </integer-array> </resources> diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml index e335315..4ea1424 100644 --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -120,16 +120,6 @@ <item>"bt-pan"</item> </string-array> - <!-- Array of allowable ConnectivityManager network types for tethering --> - <!-- Common options are [1, 4] for TYPE_WIFI and TYPE_MOBILE_DUN or - [0,1,5,7] for TYPE_MOBILE, TYPE_WIFI, TYPE_MOBILE_HIPRI and TYPE_BLUETOOTH --> - <integer-array translatable="false" name="config_tether_upstream_types"> - <item>0</item> - <item>1</item> - <item>5</item> - <item>7</item> - </integer-array> - <!-- Boolean indicating whether the wifi chipset has background scan support --> <bool translatable="false" name="config_wifi_background_scan_support">true</bool> |