adb error: more than one device - android -
this question has answer here:
i have 2 android devices connected via usb pc
now when list devices this:
c:\users\mbh>adb devices list of devices attached 0123456789abcdef device 0123456789abcdef device
both devices got same serial number, or whatever 0123456789abcdef means.
the problem: not able in case, neither pushing or pulling files, nor forwarding tcp ports.
c:\users\mbh>adb forward tcp:59900 tcp:59900 error: more 1 device/emulator c:\users\mbh>adb -s 0123456789abcdef forward tcp:59900 tcp:59900 error: more 1 device
the question: there anyway connect or select device in different way? device model number or something?
i got it
c:\users\mbh>adb devices -l list of devices attached 0123456789abcdef device product:zen model:zen device:zen 0123456789abcdef device product:full_gs702c model:m757 device:gs702c
then use model number shelling
c:\users\mbh>adb -s model:m757 shell shell@gs702c:/ $ ls
it works now
Comments
Post a Comment