Android Real device debugging, something can not use USB debugging, or with USB debugging too troublesome, then need to use wireless debugging this way.
Unlimited debugging sub-root and non-root two, the market's wireless ADB debugging app, basic needs root permissions, which makes no root device can not use wireless debugging, and then need to use non-root infinite debugging method, nonsense said, the following describes the specific way.
Preparatory work
1, first use the USB connection device, and open the developer Mode Debug switch (General debugging method, the specific use of methods do not repeat)
2. Open Terminal command (Windows key +r, input cmd, enter)
3. Enter the ADB devices command to view all connected devices (if you cannot use the ADB command, configure the Android environment variable, or open the directory where ADB is located in the terminal using this command)
4. Enter the adb tcpip xxxx(xxxx is the port number) to set the device's wireless connection port number, for example:adb tcpip 9191
If more than one device is currently connected, a command appears
You need to add the directive-S device name after ADB, for example: output multiple devices using adb devices instructions
When using the ADB command at this time, you need to change adb to adb- s 3hx7n******** tcpip 9191 , other instructions in the same way
Start connecting devices below
1, ensure that the equipment and computers in the same LAN
2, check the device IP is how much (set--wlan--click Connected WiFi), such as IP for 192.168.0.101
3. Enter the command ADB connect 192.168.0.101:9191,9191 for the port number set above using adb tcpip 9191
4. Complete
Android Wireless Debug device, no root mode required