Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
yungd1plomat authored Sep 30, 2021
1 parent 1545b51 commit 594c01b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ static void Main(string[] args)
```

## Device commands

**Some commands require Root**
### Install and Uninstall applications

```c#
Expand All @@ -307,6 +307,16 @@ static void Main(string[] args)
}
```

Or you can use AdvancedAdbClient.Install

```c#
static void Main(string[] args)
{
...
client.Install(device, File.OpenRead("Application.apk"));
...
}
```
### Start and stop applications

```c#
Expand Down

0 comments on commit 594c01b

Please sign in to comment.