mondrianlte: enable data config
This commit is contained in:
parent
f042ce4163
commit
06235a1927
1 changed files with 41 additions and 5 deletions
|
@ -8,7 +8,7 @@
|
||||||
** you may not use this file except in compliance with the License.
|
** you may not use this file except in compliance with the License.
|
||||||
** You may obtain a copy of the License at
|
** You may obtain a copy of the License at
|
||||||
**
|
**
|
||||||
** http://www.apache.org/licenses/LICENSE-2.0
|
** http://www.apache.org/licenses/LICENSE-2.0
|
||||||
**
|
**
|
||||||
** Unless required by applicable law or agreed to in writing, software
|
** Unless required by applicable law or agreed to in writing, software
|
||||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
@ -19,11 +19,47 @@
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- These resources are around just to allow their values to be customized
|
<!-- These resources are around just to allow their values to be customized
|
||||||
for different hardware and product builds. -->
|
for different hardware and product builds. -->
|
||||||
<resources>
|
<resources>
|
||||||
<!-- The RadioAccessFamilies supported by the device.
|
<!-- The RadioAccessFamilies supported by the device.
|
||||||
Empty is viewed as "all". Only used on devices which
|
Empty is viewed as "all". Only used on devices which
|
||||||
don't support RIL_REQUEST_GET_RADIO_CAPABILITY
|
don't support RIL_REQUEST_GET_RADIO_CAPABILITY
|
||||||
format is UMTS|LTE|... -->
|
format is UMTS|LTE|... -->
|
||||||
<string translatable="false" name="config_radio_access_family">GSM|WCDMA|LTE</string>
|
<string translatable="false" name="config_radio_access_family">GSM|WCDMA|LTE</string>
|
||||||
|
|
||||||
|
<!-- 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 translatable="false" name="networkAttributes">
|
||||||
|
<item>"wifi,1,1,1,-1,true"</item>
|
||||||
|
<item>"mobile,0,0,0,-1,true"</item>
|
||||||
|
<item>"mobile_mms,2,0,2,180000,true"</item>
|
||||||
|
<item>"mobile_supl,3,0,2,60000,true"</item>
|
||||||
|
<item>"mobile_dun,4,0,2,60000,true"</item>
|
||||||
|
<item>"mobile_hipri,5,0,3,60000,true"</item>
|
||||||
|
<item>"mobile_bluetooth,7,7,2,-1,true"</item>
|
||||||
|
<item>"wifi_p2p,13,1,0,-1,true"</item>
|
||||||
|
<item>"ethernet,9,9,9,-1,true"</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
<!-- An Array of "[ConnectivityManager connectionType],
|
||||||
|
[# simultaneous connection types]" -->
|
||||||
|
<string-array translatable="false" name="radioAttributes">
|
||||||
|
<item>"1,1"</item>
|
||||||
|
<item>"0,1"</item>
|
||||||
|
<item>"7,1"</item>
|
||||||
|
<item>"9,1"</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
<!-- This device does allow sms service. -->
|
||||||
|
<bool name="config_sms_capable">true</bool>
|
||||||
|
|
||||||
|
<!-- Flag indicating whether the current device allows data.
|
||||||
|
If true, this means that the device supports data connectivity through
|
||||||
|
the telephony network.
|
||||||
|
This can be overridden to false for devices that support voice and/or sms . -->
|
||||||
|
<bool name="config_mobile_data_capable">true</bool>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
Loading…
Add table
Reference in a new issue