From 594c01b181c27dbb92683667bf38226b1b6cef61 Mon Sep 17 00:00:00 2001 From: Ainur <64736191+yungd1plomat@users.noreply.github.com> Date: Thu, 30 Sep 2021 11:54:45 +0500 Subject: [PATCH] Add files via upload --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3710ff88..60e2677a 100644 --- a/README.md +++ b/README.md @@ -293,7 +293,7 @@ static void Main(string[] args) ``` ## Device commands - +**Some commands require Root** ### Install and Uninstall applications ```c# @@ -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#