Skip to content

Commit 594c01b

Browse files
authored
Add files via upload
1 parent 1545b51 commit 594c01b

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ static void Main(string[] args)
293293
```
294294

295295
## Device commands
296-
296+
**Some commands require Root**
297297
### Install and Uninstall applications
298298

299299
```c#
@@ -307,6 +307,16 @@ static void Main(string[] args)
307307
}
308308
```
309309

310+
Or you can use AdvancedAdbClient.Install
311+
312+
```c#
313+
static void Main(string[] args)
314+
{
315+
...
316+
client.Install(device, File.OpenRead("Application.apk"));
317+
...
318+
}
319+
```
310320
### Start and stop applications
311321

312322
```c#

0 commit comments

Comments
 (0)