1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:02:09 +02:00

adb-connect, adb-pair, adb-disconnect: add page (#15250)

This commit is contained in:
Managor 2025-01-05 23:02:39 +02:00 committed by GitHub
parent d35f161d40
commit 150f71028b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# 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}}`

View file

@ -0,0 +1,7 @@
# adb disconnect
> This command has been moved to `adb connect`.
- View documentation for `adb disconnect`:
`tldr adb connect`

7
pages/common/adb-pair.md Normal file
View file

@ -0,0 +1,7 @@
# adb pair
> This command has been moved to `adb connect`.
- View documentation for `adb pair`:
`tldr adb connect`