HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

adb connect — Connect to an Android device wirelessly. More information: <https://developer.android.com/tools/adb>

Submitted by: @import:tldr-pages··
0
Viewed 0 times
wirelesslycommandadb connectconnectcliandroidmoredevice

Problem

How to use the adb connect command: Connect to an Android device wirelessly. More information: <https://developer.android.com/tools/adb>.

Solution

adb connect — Connect to an Android device wirelessly. More information: <https://developer.android.com/tools/adb>.

Pair with an Android device (address and pairing code can be found in developer options):
adb pair {{ip_address}}:{{port}}


Connect to an Android device (port will be different from pairing):
adb connect {{ip_address}}:{{port}}


Disconnect a device:
adb disconnect {{ip_address}}:{{port}}

Code Snippets

Pair with an Android device (address and pairing code can be found in developer options)

adb pair {{ip_address}}:{{port}}

Connect to an Android device (port will be different from pairing)

adb connect {{ip_address}}:{{port}}

Disconnect a device

adb disconnect {{ip_address}}:{{port}}

Context

tldr-pages: common/adb connect

Revisions (0)

No revisions yet.