Last active
February 21, 2022 05:10
-
-
Save happysingh23828/2756e5919e033505440989d44fc3b263 to your computer and use it in GitHub Desktop.
ADB Connect with WIFI - Android
This file contains 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 characters
// Get Your Device IP | |
adb shell "ip addr show wlan0 | grep -e wlan0$ | cut -d\" \" -f 6 | cut -d/ -f 1" | |
// Connect over 5555 | |
adb tcpip 5555 | |
// Connect device over TCP. | |
adb connect 192.168.1.81:5555 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment