android use adb remote debugging

Because my company is engaged in embedded development, but our equipment is very troublesome without leaving adb interface, so I especially searched for ADB remote debugging information, but found that most of the online statements are not very complete, or The method is not applicable, so I specially posted my method for your reference.
       All required resource files are packaged in adb       tool.zip , download address: http://download.csdn.net/detail/ljx1010262034/9615966
(1) Install ADB driver
1. Unzip the adb tool.zip, and add adb under adbtoos Copy fastboot.exe to c:/windows/system32
      2. Then copy AdbWinApi.dll and AdbWinUsbApi.dll to c:/windows/system
      3. Open CMD, enter adb, if the version number is displayed, it means adb The installation is successful;
(2) Install adbwireless on the mobile phone
       1. Open directly after installation, click the start button, and display the device IP address;
(3) Connect
        1. Open cmd and enter adb connect port (the IP displayed on adbwireless)
        2. Prompt connect to port, it means the connection is successful, you can view logcat through adb, or pull, push, install, etc...


Note: The device needs to be in the same local area network as the computer. If it is not in the same local area network, you can also use VPN. Do not use the IP address displayed by adbwireless, but use the address of eth0.

Guess you like

Origin blog.csdn.net/lilifang_2011/article/details/112939961