2017년 10월 21일 토요일

Android WIFI Debuging

Today we talk about Android WIFI debugging.
iOS has recently provided WIFI debugging, but Android has been around for a while now.
For debugging, the development PC and smartphone must be in the same network.
How to set it is as follows.
Navigate to the folder where adb is installed and open the Window Command window in that location.
adb -d tcpip 9999.
Then the following message appears.
restarting in TCP mode port: 9999
Next, obtain the local IP of the smartphone to be debugged.(You can easily get information by installing a tool to get WIFI information from Google Play.)
Once you have obtained the IP, type Command as shown below.
After typing adb connect XXX.XXX.XXX.XXX:9999, the following message is displayed and the connection is successful.
connect to XXX.XXX.XXX.XXX:9999
How to verify your connection
If you type adb devices, you can check the list.
List of devices attachedXXX.XXX.XXX.XXX:9999 device
Finally, the way to turn debugging connected with WIFI back to USB is as follows.
adb -s XXX.XXX.XXX.XXX:9999 usb
Feel free to develop and develop wireless ^^

댓글 없음: