1. homebrew 설치
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
설치 끝. 참 쉽다.
adb가 설치되고 나면 다음 스크립트를 실행시켜서 USB 연결 없이 무선으로 디버깅 가능하다.
#!/bin/sh
#
# usage :
# adb-debug-over-wifi [SERIAL OF THE DEVICE]
device_serial=$1
devices_attached=`adb devices -l | grep -c "device:"`
# check the device
if [ -z "$device_serial" ]; then
case $devices_attached in
0 )
echo "No device attached"
exit 1
;;
1 )
echo "No serial given, automatically redirect to the current device"
device_serial_command=""
;;
* )
echo "More than one device attached, please provide a serial"
exit 1
;;
esac
else
device_serial_command="-s $device_serial"
fi
# get the device local ip
device_ip=`adb ${device_serial_command} shell netcfg | grep "wlan0" | grep -oE "\b([0-9]{1,3}\.){3}[0-9]{1,3}\b"`
echo "Device IP : ${device_ip}"
# restart adb in tcpip mode
adb ${device_serial_command} tcpip 5555
# wait for the user to disconnect the device
read -p "Unplug your device from USB, then press enter to create the wifi connection" w
adb connect ${device_ip}:5555
'IT > 모바일' 카테고리의 다른 글
타자연습 앱 - 한국어, 중국어, 일본어, 영어 (0) | 2018.01.10 |
---|---|
자마린 테스트 클라우드 사용 방법 (0) | 2018.01.09 |
Deobfuscation files 매핑 파일 위치 (0) | 2018.01.07 |
Firebase database (0) | 2018.01.03 |
고사성어 앱 배포 - 자마린 (0) | 2017.12.25 |