안드로이드 에뮬레이터를 콘솔에서 작업해야 할 때도 생긴당....
그럴 때 유용한 콤보를 알아보자.

- SD카드 생성
    $ mksdcard <size> <file>

- 설치된 안드로이드 target 알아보기
    $ android list targets
- VM 생성
$ android create avd -n <name> -t <targetID> [-<option> <value>] ... 
- VM 실행
$ emulator -avd <avd_name> [<options>]
sdcard를 탑재하고 싶으면 -sdcard <file>

이러면 이제 에뮬레이터가 뜨기 시작한당
그럼 이제 컨트롤! adb 명령어에 대해서 대충 알아보자

adb [<options>]


+ Recent posts