设置adb的环境变量:
1、先说下adb配置.bash_profile
1)打开终端,输入:open .bash_profile
意思: 打开 .bash_profile文件(如果无,则自动新建)
2)如果已经有了,输入:open .bash_profile -e
意思:打开并编辑 该文件
3)在.bash_profile中输入: export PATH=/.../Library/Android/sdk/platform-tools/:$PATH
4)输入命令:source ~/.bash_profile
2、配置 .zshrc 文件
1)终端中输入:open .zshrc
2)如果已经有了,输入:open .zshrc -e
3)在.zshrc中输入: export PATH=/.../Library/Android/sdk/platform-tools/:$PATH
4)输入命令:source ~/.zshrc
adb设置wifi设备:
1、手机USB连接电话后,执行
adb devices
2、设置连接端口,端口不要带0,
adb tcpip 7777
3、tcp连接设备,要求手机与电脑在同一WiFi下,其中192.168.31.186为手机IP,在手机设置->WLAN中连接的WiFi下可以查看
adb connect 192.168.31.186:7777