I am new to android.
Is there any way to connect the wireless adb to my PC?
I've gone through many free apps which are not allowing me to connect when my PC doesn't have internet connection
I am new to android.
Is there any way to connect the wireless adb to my PC?
I've gone through many free apps which are not allowing me to connect when my PC doesn't have internet connection
Yes it is possible using this free app
https://play.google.com/store/apps/details?id=com.wave18.adbwireless
I am not sure have you ever used it or not
I think there are a lot of applications for wireless ADB connection for rooted devices. In case of non rooted devices, it is possible to establish ADB session over wifi, however, you'll have to connect your device to the PC over USB first:
Set the TCP/IP port to 5555:
$ adb tcpip 5555
Execute the following:
$ adb kill-server $ adb connect 192.168.2.5
Now, you'll be able to run ADB commands over WiFi.