Skip to content

Instantly share code, notes, and snippets.

@nothingasis
Created September 12, 2019 17:51
Show Gist options
  • Select an option

  • Save nothingasis/6ddc2a9ee30d0fb75cef97ec5424e000 to your computer and use it in GitHub Desktop.

Select an option

Save nothingasis/6ddc2a9ee30d0fb75cef97ec5424e000 to your computer and use it in GitHub Desktop.

Revisions

  1. Nurthin Aziz created this gist Sep 12, 2019.
    16 changes: 16 additions & 0 deletions wireless_adb.bat
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,16 @@
    ECHO OFF

    ECHO BEFORE YOU CAN USE WIRELESS ADB:
    ECHO 0. Connect your device.
    ECHO 1. Enabled USB Debugging.
    ECHO 2. Connect to the same WiFi.
    ECHO 3. Get the IP of your device.

    set /P ip=Enter IP Address:

    ECHO Connecting wireless adb...
    adb kill-server
    adb tcpip 5556
    adb connect %ip%:5556

    PAUSE