Reputation: 1061
How can i enable/disable the ethernet from my android app? There is no EthernetManager in SDK like WifiManager.
Upvotes: 1
Views: 2263
Reputation: 21728
Android comes with ifconfig
(configure arbitrary network and netmask, also to put the network up or down). and dhcpcd
(obtain and use dynamic ip). Both commands work for me. I cannot find any GUI tools so far.
Unfortunately, this is currently only possible with the rooted device.
Upvotes: 2