$ adb --help

-s SERIAL  use device with given serial (overrides $ANDROID_SERIAL)

$ adb devices
List of devices attached 
emulator-5554   device
7f1c864e    device

$ adb shell -s 7f1c864e
error: more than one device and emulator

当前回答

另一种方法是将环境变量ANDROID_SERIAL设置为相关的串行,这里假设你使用的是Windows:

set ANDROID_SERIAL=7f1c864e
echo %ANDROID_SERIAL%
"7f1c864e"

然后你可以使用adb.exe shell没有任何问题。

其他回答

https://developer.android.com/studio/command-line/adb#directingcommands

对我的测试有效的方法:

Ubuntu bash终端:

$ adb devices
List of devices attached 
646269f0    device
8a928c2 device
$ export ANDROID_SERIAL=646269f0
$ echo $ANDROID_SERIAL
646269f0
$ adb reboot bootloader

Windows命令提示符:

$ adb devices
List of devices attached 
646269f0    device
8a928c2 device
$ set ANDROID_SERIAL=646269f0
$ echo $ANDROID_SERIAL$
646269f0
$ adb reboot bootloader

这使您可以使用正常的命令和脚本,就好像只有ANDROID_SERIAL设备附加。

或者,您可以每次都提到设备序列号。

$ adb -s 646269f0 shell

当有多个设备连接时,这个要点将为你显示菜单做大部分工作:

$ adb $(android-select-device) shell
1) 02783201431feeee device 3) emulator-5554
2) 3832380FA5F30000 device 4) emulator-5556
Select the device to use, <Q> to quit:

为了避免输入,您可以创建一个别名,其中包括此处解释的设备选择。

为了方便起见,我们可以创建运行配置,设置ANDROID_SERIAL:

adb_wifi.bat可能看起来很像(只有位置参数%1%和“$1”可能不同):

adb tcpip 5555
adb connect %1%:5555

改进之处在于,adb将接收当前的ANDROID_SERIAL。 在shell脚本也ANDROID_SERIAL=xyz adb shell应该工作。

这种说法不一定是错误的:

-s SERIAL  use device with given serial (overrides $ANDROID_SERIAL)

但是也可以在运行adb命令之前更改ANDROID_SERIAL。


我们甚至可以设置eg。ANDROID_SERIAL=192.168.2.60:5555定义adb的目标IP。 这也允许运行adb shell,命令被作为“脚本参数”传递。

在命令前使用-s选项指定设备,例如:

adb -s 7f1c864e shell

对于多个模拟器,使用进程的IP和端口作为id,例如:

adb -s 192.168.232.2:5555 <command>

参见如何获取Android模拟器的IP地址? 但如果只有一个模拟器,请尝试: Adb -e <命令>

参见http://developer.android.com/tools/help/adb.html#directingcommands

下面是我为自己编写的shell脚本:

#! /bin/sh

for device in `adb devices | awk '{print $1}'`; do
  if [ ! "$device" = "" ] && [ ! "$device" = "List" ]
  then
    echo " "
    echo "adb -s $device $@"
    echo "------------------------------------------------------"
    adb -s $device $@
  fi
done