Search code examples
adbnokiax

Does Nokia X allow ADB over network?


Due to space limitations in my office, I'd like to deploy my apps via network instead of via usb. Both the phone and the PC are in the same network.

I'm hoping for something similar to Ouya: a checkbox in the settings and then "adb connect "


Solution

  • Connect with USB cable and run:

    adb tcpip 5555
    

    Disconnect USB cable and run:

    adb connect 192.168.0.100:5555
    

    Change the IP to the actual IP of the device.