Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to get the device name using adb? For example, if the device name is John Doe's Nexus, how to get the name using a command?

I have an android device, which when registered to an account renames itself after the account name. I need to get that name using adb.

like image 502
Senthil B Avatar asked Nov 06 '22 20:11

Senthil B


1 Answers

You can use

adb shell dumpsys bluetooth_manager

See full answer here: Find connected bluetooth device name using adb?

like image 71
z1ad Avatar answered Nov 14 '22 23:11

z1ad