-1

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

just.another.programmer
  • 8,579
  • 8
  • 51
  • 90
  • This might help http://stackoverflow.com/questions/14357705/adb-over-wireless/14357876#14357876 – Lucky Jul 22 '15 at 15:24

2 Answers2

0

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

Sainath Patwary karnate
  • 3,165
  • 1
  • 16
  • 18
-1

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:

  1. Connect your device to PC via USB
  2. Set the TCP/IP port to 5555:

    $ adb tcpip 5555

  3. Disconnect your device (via USB) and then reconnect it over WiFi (do ping test to verify)
  4. Execute the following:

    $ adb kill-server $ adb connect 192.168.2.5

    • daemon not running. starting it now on port 5037 *
    • daemon started successfully * connected to 192.168.2.5:5555

Now, you'll be able to run ADB commands over WiFi.

Vinit Shandilya
  • 1,643
  • 5
  • 24
  • 44