seeker
seeker

Reputation: 704

How to get a list of devices connected to an Android device from adb shell

Can we get the list of devices connected to android device from adb shell.

Upvotes: 1

Views: 3665

Answers (1)

George Profenza
George Profenza

Reputation: 51847

Since it's unix based, you should be able to try:

ls /dev/tty.*

or

ls /dev/cu.*

Also, I haven't tried myself yet, but the Android Open Accessory Development Kit sounds useful.

Upvotes: 1

Related Questions