옛날 안드로이드 기기에서 airplane mode toggle
https://stackoverflow.com/questions/10506591/turning-airplane-mode-on-via-adb
- Windows/DOS:
adb shell am start -a android.settings.AIRPLANE_MODE_SETTINGS & adb shell input keyevent 19 & adb shell input keyevent 23 & adb shell input keyevent 4
- Unix/Linux:
adb shell am start -a android.settings.AIRPLANE_MODE_SETTINGS ; adb shell input keyevent 19 ; adb shell input keyevent 23 ; adb shell input keyevent 4
adb 설치 번외
Ubunt 에서 adb tool 설치 하기
https://www.linuxbabe.com/ubuntu/how-to-install-adb-fastboot-ubuntu-16-04-16-10-14-04
apt 이용
$ apt-get install android-tools-adb
OS X 에서 adb 설치
https://stackoverflow.com/questions/31374085/installing-adb-on-mac-os-x
homebrew 이용
$ brew cask install android-platform-tools
'IT' 카테고리의 다른 글
[CentOS7] 방화벽 firewalld iptables (1) | 2017.09.16 |
---|---|
[안드르이드][apk] Tmap 티맵 4.6 apk 링크 (0) | 2017.08.15 |
[Sony][RAW] arw 파일을 윈도우 탐색기에서 미리 보기 (0) | 2017.05.27 |
[Python] dictionary new key add dict 추가 (0) | 2017.05.01 |
[Java] Java default parameter 기본 파라미터 (0) | 2017.04.30 |