Skip to content

Instantly share code, notes, and snippets.

@leicht-io
Created March 19, 2016 09:41
Show Gist options
  • Save leicht-io/ad4089844c3c0c11e3f8 to your computer and use it in GitHub Desktop.
Save leicht-io/ad4089844c3c0c11e3f8 to your computer and use it in GitHub Desktop.
@Echo off
set /p device_ip=Enter local device IP:
IF "%ANDROID_SDK_PATH%" == "" (
ECHO SDK PATH IS NOT DEFINED
) else (
SET sdk_path = "%ANDROID_SDK_PATH%\platform-tools"
cd /D %ANDROID_SDK_PATH%\platform-tools
adb kill-server
adb connect %device_ip%:5555
pause
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment