에뮬레이터에 apk 파일 설치하기


[OS-Ubuntu]

1) adb 파일이 있는 해당경로 이동

cd /...파일경로.../android-sdks/platform-tools


2) 연결되어 있는 장비 조사

./adb devices


3) apk 파일 설치

./adb -s emulator-설치하려는장비번호 install /...파일경로.../파일명.apk


※ 보통 에뮬레이터 번호는 5554 이나, 설치하려는 해당 장비 번호 확인!

'안드로이드 > Setup' 카테고리의 다른 글

How enable Developer Option on VIVO V3  (0) 2016.06.21

Message:

The connection to adb is down, and a severe error has occured.

You must restart adb and Eclipse.

Please ensure that adb is correctly located at '/.../.../android-sdks/platform-tools/adb' and can be executed.


Solve:

[OS - UBUNTU]

 1) sudo ./adb kill-server

 2) sudo ./adb start-server


[OS - WINDOWS]

 1) adb kill-server

 2) adb start-server

+ Recent posts