android 環境變量的配置:android
沒配置的時候:bash
bogon:spgapp houzhibin$ adb devices bash: adb: command not found
打開mac的terminal終端,輸入 cd ~/ 【進入當前用戶的home目錄】
輸入 touch .bash_profile 【若是沒有.bash_profile這個文件,則建立一個這個文件】
輸入 open .bash_profile 【打開咱們建立的這個文件,此時應該彈出一個文本編輯框,若是是第一次配置環境,那麼文本編輯框爲空白】
app
export ANDROID_HOME=/Users/houzhibin/Library/Android/sdk export PATH=${PATH}:${ANDROID_HOME}/tools export PATH=${PATH}:${ANDROID_HOME}/platform-tools
------配置WiFi調試-------------tcp
一、USB線鏈接電腦和手機,執行 adb devices 命令,顯示以下:調試
bogon:~ houzhibin$ adb devices List of devices attached 4b4a4f3241393498 device bogon:~ houzhibin$ adb tcpip 5555 restarting in TCP mode port: 5555 bogon:~ houzhibin$ adb connect 192.168.0.103:5555 connected to 192.168.0.103:5555 bogon:~ houzhibin$ adb devices List of devices attached 192.168.0.103:5555 device bogon:~ houzhibin$
二、adb tcpip 5555rest
三、拔掉USB數據線code
四、在手機中查看手機的IPorm
五、執行命令 adb connect 192.168.0.103:5555blog
六、鏈接好了,能夠檢查下 ,再次執行 adb devices 發現已經鏈接了ip
能夠無線調試了,go ahead!