summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Filetto <matt.filetto@gmail.com>2017-02-11 23:27:01 -0800
committerMatt Filetto <matt.filetto@gmail.com>2017-02-19 12:39:16 +0000
commit32ca582e400e7535929058343150a51a34228b6f (patch)
tree710752ba2fdc2879d4d9d80aad458fd417f840c7
parentf23a4c401df12f00f97b71b8c0b48752f36b50fd (diff)
h918: define radio access family and remove duplicate overlay
Change-Id: Id4d03c7a79451db1b4afaee2fd091fd849c36fa0 Signed-off-by: Matt Filetto <matt.filetto@gmail.com>
-rw-r--r--overlay/frameworks/base/core/res/res/values/config.xml31
1 files changed, 5 insertions, 26 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml
index 7a92729..2f4e8bd 100644
--- a/overlay/frameworks/base/core/res/res/values/config.xml
+++ b/overlay/frameworks/base/core/res/res/values/config.xml
@@ -19,31 +19,10 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
- <!-- This string array should be overridden by the device to present a list of network
- attributes. This is used by the connectivity manager to decide which networks can coexist
- based on the hardware -->
- <!-- An Array of "[Connection name],[ConnectivityManager.TYPE_xxxx],
- [associated radio-type],[priority],[restoral-timer(ms)],[dependencyMet] -->
- <!-- the 5th element "resore-time" indicates the number of milliseconds to delay
- before automatically restore the default connection. Set -1 if the connection
- does not require auto-restore. -->
- <!-- the 6th element indicates boot-time dependency-met value. -->
- <string-array name="networkAttributes">
- <item>wifi,1,1,1,-1,true</item>
- <item>mobile,0,0,0,-1,true</item>
- <item>mobile_mms,2,0,2,60000,true</item>
- <item>mobile_supl,3,0,2,60000,true</item>
- <item>mobile_dun,4,0,2,-1,true</item>
- <item>mobile_hipri,5,0,3,60000,true</item>
- <item>mobile_fota,10,0,2,60000,true</item>
- <item>mobile_ims,11,0,3,-1,true</item>
- <item>mobile_cbs,12,0,2,60000,true</item>
- <item>bluetooth,7,7,2,-1,true</item>
- <item>wifi_p2p,13,1,0,-1,true</item>
- <item>mobile_ia,14,0,2,-1,true</item>
- <item>mobile_emergency,15,0,2,-1,true</item>
- <item>mobile_xcap,23,0,2,-1,true</item>
- <item>mobile_vtims,28,0,2,-1,true</item>
- </string-array>
+ <!-- The RadioAccessFamilies supported by the device.
+ Empty is viewed as "all". Only used on devices which
+ don't support RIL_REQUEST_GET_RADIO_CAPABILITY
+ format is UMTS|LTE|... -->
+ <string translatable="false" name="config_radio_access_family">GSM|WCDMA|LTE</string>
</resources>