Hello, everyone, recently in the Android program due to mobile phone interface problems, debugging programs are always poor and can not be normal debugging, so feel quite distressed, so on the internet to find wireless debugging methods of Android. After studying and experimenting with the wireless debug program that is now successful, the method is shared as follows:
1. Whether the mobile phone has the condition
1) mobile phone must root can be oh, if there is no root please do not go down.
2) mobile phone and development computer in the same LAN.
2. Install and debug software on your phone
1) Find the Adbwireless software and install it in the mobile software market.
2) After installation such as:
3) Click on the switch such as:
3. Connect your phone on your computer
1) Enter Netstat-ano in cmd | findstr "5037" command to see if there are other processes that occupy 5037 ports as follows:
TCP 127.0.0.1:2568 127.0.0.1:5037 syn_sent 516
TCP 127.0.0.1:2569 127.0.0.1:5037 syn_sent 516
2) in Task Manager, find the process with PID 516 to end this process.
3) Find the ADB (Android Debug Bridge) from the Android Sdk\platform-tools directory on your computer, and command line enter the following command to complete the connection:
ADB Connect 192.168.1.101:5555
After a successful connection such as:
4) When you're done, you can see the phone driver in devices.
Real Machine Debugging Android program under WiFi