PS C:\Users\frieren> adb devices List of devices attached 192.168.1.8:39333 device emulator-5554 device こういうときはadb -t 1 shellみたいにデバイスを指定する。 デバイスを指定するためのオプションはshellの前に書かないと働かないので注意。 USB接続のデバイスを指定: adb -d shell use USB device (error if multiple devices connected) 複数台あるとエラー。 TCP/IP接続のデバイスを指定: adb -e shell use TCP/IP device (error if multiple TCP/IP devices available) 複数台あるとエラー。 エミュレータも含まれるみたい。 Transp