Description
This guide explains how to connect to a device using ADB
Requirements
- Have a laptop/PC with the ability to run commands
- Be on the same network as the device
- The IP address of the device
How to connect to a device using ADB
- Install ADB Platform Tools: https://developer.android.com/tools/releases/platform-tools And select the version based on your device.
- Extract the folder to a desired location. When inside this folder there should be a file called “adb.exe”
- Use the navigation bar to open CMD (command prompt) by typing CMD in it.
Press “enter”, this will open CMD in the current folder as we need to execute commands from this folder.
- In the CMD type “ADB devices” to test the functionality. If it returns the following message:
It means its functional.
- To connect to a device, we can use the following command: “adb connect <IP address>”. replace <IP address> with the IP of the device.
- If the device refuses the connection, then ADB/USB debugging is not enabled on the device. See the following documentation to enable ADB/USB debugging:
How to enable ADB/USB debugging
- After these steps have been done, you are connected to the device.
Comments
0 comments
Please sign in to leave a comment.