CODEDRAGON ㆍDevelopment/Android
여러 디바이스 연결된 경우 특정 디바이스 지정하여 설치하기
개발 PC에 연결된 디바이스 확인하기
emulator-5554 device가 안드로이드 스튜디오에서 실한 가상디바이스 입니다.
adb devices
C:\CodeLab\Android\sdk\platform-tools>adb devices List of devices attached emulator-5580 host emulator-5578 host emulator-5576 host emulator-5572 host emulator-5568 host emulator-5560 host emulator-5558 host emulator-5556 host emulator-5554 device
|
emulator-5554 에 설치하기
adb -s emulator-5554 install hangulkeyboard.apk
C:\CodeLab\Android\sdk\platform-tools>adb -s emulator-5554 install hangulkeyboard.apk [100%] /data/local/tmp/hangulkeyboard.apk pkg: /data/local/tmp/hangulkeyboard.apk Success
C:\CodeLab\Android\sdk\platform-tools> |