ADB over Wifi
Many people does not know but it is possible to enable ADB over WiFi .<br />
Connect you'r Android device to you'r computer. <br />
Also make sure you already have the android-sdk. <br />
Open your terminal and type:
cd android-sdk-path/platform-tools/
adb tcpip 5555
After that you should receive the following output: <br />
restarting in TCP mode port: 5555 <br />
Go to your terminal again and type:
adb connect <Device IP adress>
eg:
adb connect 192.168.1.150
After that you should receive the following output: <br />
connected to 192.168.1.150:5555
To get back to USB mode again, just type: <br />
adb usb
After that you should receive the following output: <br />
restarting in USB mode
Written by Filipe Batista
Related protips
2 Responses
Super cool.
Just used this last night for the first time. Problem I had was; when trying to debug in Android Studio, I would be be able to choose my phone ( over wifi ) and it would try to run the app but would then error out. Not sure what was going on. But other then that, very cool!