-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adb-connect, adb-pair, adb-disconnect: add page (#15250)
- Loading branch information
Showing
3 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
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}}` |
This file contains 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
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` |
This file contains 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
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` |