<string-array translatable="false" name="networkAttributes">
<item>"wifi,1,1,1,-1,true"</item>
<item>"wifi_p2p,13,1,0,-1,true"</item>
<item>"ethernet,9,9,2,-1,true"</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>"9,1"</item>
</string-array>
My init.rc also have following part at on boot sections
service dhcpcd_eth0 /system/bin/dhcpcd -aABDKL
class main
group dhcp
oneshot
service iprenew_eth0 /system/bin/dhcpcd -n
class late_start
disabled
oneshot
but i always get net::ERR_NAME_NOT_RESOLVED at browser.
checked from console using ifconfig and ip route, i can see all are corrected at kernel level.
but check systemprop seem not work.
# getprop | grep net
[ethernet.interface]: [eth0]
[gsm.network.type]: [Unknown]
[init.svc.netd]: [running]
[net.change]: [net.qtaguid_enabled]
[net.hostname]: [android-101222c089f1aeac]
[net.qtaguid_enabled]: [1]
[net.tcp.default_init_rwnd]: [60]
Any Ideas?
Thanks
Uy