1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/adb-connect.md

17 lines
426 B
Markdown
Raw Normal View History

# 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}}`