Android Studio –在Mac OS上通过Wi-Fi运行和调试构建

时间:2018-10-10 23:08:01

标签: android macos android-studio adb android-wifi

如何在适用于macOS的Android Studio 3.2中(通过Wi-Fi)无线运行和调试构建?

是否可以通过Android Studio的用户界面而不是通过Android调试桥(adb)进行设置?

1 个答案:

答案 0 :(得分:2)

Android Studio使用adb。您无法避免使用adb连接到Android设备。 如果您至少可以将首次设备连接到pc:

  1. 通过USB连接设备并确保调试正常,然后运行:

    adb tcpip 5555
    adb connect :5555
    

    断开USB并继续进行无线调试。

  2. 完成后,想要切换回USB调试,请运行:

    adb -s:5555

  3. 要查找设备的IP地址,请在设备上转到“设置”>“ Wi-Fi”>“高级”>“ IP地址”,或运行adb shell netcfg

    li>

无需root。一次只能调试一个设备。

存在类似的问题here。在此链接中,您将找到该文章的基础文章。