BlaXuan 发表于 2021-12-7 12:22

Unity:配置Android手机进行WiFi调试

为了让Unity编译的apk包安装到手机,我们需要通过USB连接手机和PC。但应用测试常常需要移动手机,所以有线带来了非常大的束缚。同时频繁插拔USB容易导致USB接口损坏,而且长期给手机充放电也会损坏手机的电池。那么,能通过WiFi连接手机进行调试吗?
答案是肯定的。
工具准备:adb是一个应用工具,可以在Android SDK安装目录下的platform-tools子目录下找到它。一般是:
C:\Users\xxx\AppData\Local\Android\Sdk
使用时在该目录打开cmd即可执行相应命令(或者将该目录加入系统环境变量,从而全局可用)。
<hr/>

[*]( 可选 )将手机通过USB连接到电脑,设置连接端口。设置完后即可断开连接。
adb tcpip 8888(默认是5555)

[*]将手机与电脑连接到同一个wifi,保证二者在同一个子网
[*]通过adb命令连接手机。查看wifi详细信息即可找到手机IP地址。
adb connect 手机IP:5555

[*]( 可选 )断开连接命令
adb disconnect 手机IP:5555
<hr/>Q:adb server version (x) doesn't match this client (x); killing...
A:Normally,this error means there are two Android SDKs in your computer. Try to find another adb of Unity in
    Unity DIR\2020.3.23f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\SDK\platform-tools
Ensure that the versions of them are the same...
页: [1]
查看完整版本: Unity:配置Android手机进行WiFi调试