Created
September 12, 2019 17:51
-
-
Save nothingasis/6ddc2a9ee30d0fb75cef97ec5424e000 to your computer and use it in GitHub Desktop.
Revisions
-
Nurthin Aziz created this gist
Sep 12, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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