본문 바로가기
모바일/Android

AVD에 APK파일 설치

by 죠부니 2018. 5. 18.
반응형

기본적인 adb 명령어

커맨드 창에서 해당 명령어 입력

설치      : adb install [경로명]

삭제      : adb uninstall [경로명]

재설치    : adb install -r [경로명]


---

디바이스가 여러개 있을경우


디바이스 확인 adb devices

C:\>adb devices -l

List of devices attached

emulator-*****          device product:sdk_google_phone_x86 model:Android_SDK_built_for_x86 device:generic_x86 transport_id:2

LGF800L********        device product:elsa_lgu_kr model:LG_F800L device:elsa transport_id:1


adb -s [디바이스명] install [경로명]

C:\>adb -s emulator-***** install c://*****.apk

Success



반응형