diff options
author | Paul Keith <javelinanddart@gmail.com> | 2018-06-09 17:53:25 +0200 |
---|---|---|
committer | Isaac Chen <isaacchen@isaacchen.cn> | 2018-07-19 00:01:07 +0000 |
commit | 1ee644d212fc6ad111c7ea439dab2f0b3519388c (patch) | |
tree | 2271b50dfc0a98204e9b3bfcfc70e94d9bfa2607 | |
parent | 0618942b018df78c4bdac746cd6c65015a49f9a2 (diff) |
wayne: overlay: Reorder tetherable connection types
* In O, the default setting for mobile data always active was
changed from off to on, meaning that when non-WiFi tethering
is being attempted, more than one connection can be active
* Since the first active connection type in this overlay is used,
reorder the values to get WiFi connections first, and then
any type of mobile data connection, instead of vice versa
Change-Id: I41f31ba1a2793e209ff439c9ba28a390fecdeecb
-rw-r--r-- | overlay/frameworks/base/core/res/res/values/config.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml index 97057c4..cd69c70 100644 --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -144,8 +144,8 @@ <!-- 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>0</item> <item>5</item> <item>7</item> </integer-array> |