I know how to debug over wifi, but the problem is that my usb cable is broken.
Is there any chance I can use adb tcpip 5555
with literally no cable?
I know how to debug over wifi, but the problem is that my usb cable is broken.
Is there any chance I can use adb tcpip 5555
with literally no cable?
if your phone is rooted, then download a terminal app from GP and run following commands:
su
setprop service.adb.tcp.port 5555
stop adbd
start adbd
and then use adb connect "ip_address" from your machine for wireless debugging.
If your phone is not rooted, then there is no other way except connecting usb cable and write on your computer's terminal:
adb tcpip 5555
adb connect "ip_address"