We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1545b51 commit 594c01bCopy full SHA for 594c01b
README.md
@@ -293,7 +293,7 @@ static void Main(string[] args)
293
```
294
295
## Device commands
296
-
+**Some commands require Root**
297
### Install and Uninstall applications
298
299
```c#
@@ -307,6 +307,16 @@ static void Main(string[] args)
307
}
308
309
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
+```
320
### Start and stop applications
321
322
0 commit comments