1

I am new in Android development and currently I face some issues regarding connect my Android device remotely using TCPIP, any help will be appreciated. Thanks in advance.

Irfan
  • 4,301
  • 6
  • 29
  • 46
  • 1
    http://stackoverflow.com/questions/2604727/how-can-i-connect-to-android-with-adb-over-tcp see this – rajshree Feb 21 '14 at 10:18

2 Answers2

1

connect your mobile using adb firest then

adb start tcpip 5000

this will restart the adb in tcpip:5000 port, then,

adb connect 192.168.1.23
CoolMonster
  • 2,258
  • 25
  • 50
0

I wrote this .bat file:

@ECHO OFF
cd C:\Android\android-sdk\platform-tools
adb tcpip 5555
set /p ip=android device ip: 
ECHO connect to %ip%
adb connect %ip%
set /p ip=done: 
Alessandro Verona
  • 1,157
  • 9
  • 23