Run/install/debug Android applications over Wi-Fi?

前端 未结 30 1751
[愿得一人]
[愿得一人] 2020-11-22 07:16

I thought there was a way to test your applications in development over Wi-Fi. Is this possible?

I\'d love to be able to untether my phone and develop wirelessly.

30条回答
  •  渐次进展
    2020-11-22 08:02

    1- For this I am considering you have already installed the latest version of Android studio. If not you can download it from here.

    2 - You can set the platform tools path in environment variable (optional).

    3 - Make sure your device and pc connected to same network.

    • plug in the data cable from pc to device.

    • Now, type adb tcpip 5555

    • remove data cable.

    • Then type adb connect 192.168.43.95

    • here 5555 is the port number and 192.168.43.95 is the ip address of the mobile device you can get id address from the mobile settings .

    • Then go to About device and go to status you can see the ip address of the device.

    • You can connect multiple device from different ports which can give ease in development.

    • Or you can go to this link for brief description with screenshots. http://blogssolutions.co.in/connect-your-android-phone-wirelessly-by-adb

提交回复
热议问题