Last active
July 27, 2018 05:46
-
-
Save arjupba/2f198315a4d6dd34db1e0c0548371cf5 to your computer and use it in GitHub Desktop.
Connect adb debugging through network
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 characters
| # Connect android device in debug mode | |
| adb devices | |
| adb tcpip 5555 | |
| # Find device ip address | |
| adb shell netcfg | |
| adb shell ifconfig | |
| adb connect 192.168.1.xxx:5555 | |
| adb devices |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment