user698262
user698262

Reputation: 29

How to get Network Adapter's name in android devices

I want to retrieve network adapter's name in android devices.

Upvotes: 1

Views: 3600

Answers (1)

bDivision
bDivision

Reputation: 31

The simpliest way to list all network interfaces in your android device is to execute this command:

adb shell ls /sys/class/net

Upvotes: 3

Related Questions