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
반응형
'프로그래밍 언어 > Android' 카테고리의 다른 글
초기 텍스트가 "Select One"인 Android Spinner를 만드는 방법 (0) | 2021.09.08 |
---|---|
오류 'android.os.NetworkOnMainThreadException' (0) | 2021.09.08 |
Android Studio 업그레이드시 "Default Activity Not Found" 오류 (0) | 2021.09.07 |
Android에서 프로그래밍 방식으로 앱 언어 변경 (0) | 2021.09.07 |
[오류] React Native android build failed. SDK location not found (0) | 2021.09.03 |