프로그래밍 언어/Android

여러 장치가 연결된 경우 ADB Shell을 사용하는 방법 "error: more than one device and emulator"

Rateye 2021. 9. 7. 10:48
728x90
반응형
질문 : 여러 장치가 연결된 경우 ADB Shell을 사용하는 방법은 무엇입니까? '오류 : 둘 이상의 기기 및 에뮬레이터'와 함께 실패

$ 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
답변

-s 옵션을 사용하여 장치를 지정합니다. 예를 들면 다음과 같습니다.

adb -s 7f1c864e shell

http://developer.android.com/tools/help/adb.html#directingcommands 도 참조하세요.

출처 : https://stackoverflow.com/questions/14654718/how-to-use-adb-shell-when-multiple-devices-are-connected-fails-with-error-mor
728x90
반응형