I\'m using Android with Api level 8 and I want to get the Address of my Ethernet interface (eth0).
On API level 8, the NetworkInterface class don\'t have the function ge
Many implementations of AndroidTV may have it populated in property, you could check with getprop command to find the correct property name ad then read it using SystemProperties.get()
for reading the MAC in the program in java you could use something like following
SystemProperties.get("ro.boot.ethernet-mac");