Search code examples
androiddebuggingadbremote-debugging

Disable wireless Android(ADB) debugging without root


is there a way to disable wireless debugging with ADB without root?

Currently I'm using adb tcpip <port> to enable it, but only way to disable it is to use the root command, or restart the phone.


Solution

  • To disable, run the command adb usb

    adb usb : Restart the adb server listening on USB.

    This is listed on the official android site