Skip to content

Commit 85d7046

Browse files
authored
[docs][Android] Add adb installation instructions
A clean Ubuntu install does not have `adb` installed by default, some contributors will need to install it first. Add instructions on how to do so.
1 parent b169cb5 commit 85d7046

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

docs/Android.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,14 @@ device in order to execute it.
133133
### 4. Deploying the build products to the device
134134

135135
You can use the `adb push` command to copy build products from your Linux
136-
environment to your Android device. Verify your device is connected and is
136+
environment to your Android device. If you haven't already installed `adb`,
137+
you may do so via `apt-get`:
138+
139+
```
140+
$ sudo apt-get install android-tools-adb
141+
```
142+
143+
Once you have `adb` installed, verify your device is connected and is
137144
listed when you run the `adb devices` command, then run the following
138145
commands to copy the Swift Android stdlib:
139146

0 commit comments

Comments
 (0)