Skip to content

Instantly share code, notes, and snippets.

@checko
Created December 10, 2012 10:23
Show Gist options
  • Save checko/4249805 to your computer and use it in GitHub Desktop.
Save checko/4249805 to your computer and use it in GitHub Desktop.
<!-- 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 connection type],
[associated radio-type],[priority] -->
<string-array translatable="false" name="networkAttributes">
<item>"wifi,1,1,1"</item>
<item>"mobile,0,0,0"</item>
<item>"mobile_mms,2,0,2"</item>
<item>"mobile_supl,3,0,2"</item>
<item>"mobile_hipri,5,0,3"</item>
<item>"ethernet,9,9,9"</item>
<item>"pppoe,10,10,10"</item>
</string-array>
<!-- This string array should be overridden by the device to present a list of radio
attributes. This is used by the connectivity manager to decide which networks can coexist
based on the hardware -->
<!-- An Array of "[ConnectivityManager connectionType],
[# simultaneous connection types]" -->
<string-array translatable="false" name="radioAttributes">
<item>"1,1"</item>
<item>"0,1"</item>
<item>"9,1"</item>
<item>"10,1"</item>
</string-array>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment