Skip to content

Commit

Permalink
adb-connect, adb-pair, adb-disconnect: add page (#15250)
Browse files Browse the repository at this point in the history
  • Loading branch information
Managor authored Jan 5, 2025
1 parent d35f161 commit 150f710
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pages/common/adb-connect.md
Original file line number Diff line number Diff line change
@@ -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}}`
7 changes: 7 additions & 0 deletions pages/common/adb-disconnect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# adb disconnect

> This command has been moved to `adb connect`.
- View documentation for `adb disconnect`:

`tldr adb connect`
7 changes: 7 additions & 0 deletions pages/common/adb-pair.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# adb pair

> This command has been moved to `adb connect`.
- View documentation for `adb pair`:

`tldr adb connect`

0 comments on commit 150f710

Please sign in to comment.