patagona.AdbClient 6.0.0

dotnet add package patagona.AdbClient --version 6.0.0
                    
NuGet\Install-Package patagona.AdbClient -Version 6.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="patagona.AdbClient" Version="6.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="patagona.AdbClient" Version="6.0.0" />
                    
Directory.Packages.props
<PackageReference Include="patagona.AdbClient" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add patagona.AdbClient --version 6.0.0
                    
#r "nuget: patagona.AdbClient, 6.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package patagona.AdbClient@6.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=patagona.AdbClient&version=6.0.0
                    
Install as a Cake Addin
#tool nuget:?package=patagona.AdbClient&version=6.0.0
                    
Install as a Cake Tool

AdbClient.NET

A .NET Client for the Android Debug Bridge (ADB)

Nuget

Features

  • Simple
  • Thread-Safe
  • Implemented Services:
    • GetHostVersion (host:version)
    • GetDevices (host:devices)
    • TrackDevices (host:track-devices)
    • Sync (sync:)
      • Push (SEND)
      • Pull (RECV)
      • List (LIST)
      • ListV2 (LIS2)
      • Stat (STAT)
      • StatV2 (LST2/STA2)
    • Execute (shell,v2:)
    • ScreenCapture (framebuffer:)

Compared to madb / SharpAdbClient

  • Pros:
    • Simple
    • Thread-Safe
    • Async
    • CancellationToken support
  • Cons:
    • Some services not (yet) implemented (pull requests are welcome)

Examples

Get ADB host version

var adbClient = new AdbServicesClient();
int hostVersion = await adbClient.GetHostVersion();

Get Devices

var adbClient = new AdbServicesClient();
IList<(string Serial, AdbConnectionState State)> devices = await adbClient.GetDevices();

Track Devices

This tracks all device changes (connect, disconnect, etc.) until the CancellationToken is cancelled (in this case, for 60 seconds)

var adbClient = new AdbServicesClient();
var cts = new CancellationTokenSource(60000);
await foreach ((string Serial, AdbConnectionState State) deviceStateChange in adbClient.TrackDevices(cts.Token))
{
    [...]
}

List root directory

var adbClient = new AdbServicesClient();
using (var syncClient = await adbClient.GetSyncClient("abcdefghijklmnop"))
{
    IList<StatV2Entry> entries = syncClient.ListV2("/");
}

Upload file to device

using (var fs = File.OpenRead("test.mp3"))
using (var syncClient = await client.GetSyncClient("abcdefghijklmnop"))
{
    await syncClient.Push("/storage/emulated/0/Music/test.mp3", fs);
}

Download file from device

using (var fs = File.OpenWrite("test.mp3"))
using (var syncClient = await client.GetSyncClient("abcdefghijklmnop"))
{
    await syncClient.Pull("/storage/emulated/0/Music/test.mp3", fs);
}

Execute command

Simple
var adbClient = new AdbServicesClient();
int exitCode = await adbClient.Execute("abcdefghijklmnop", "touch", new string[] { "/storage/emulated/0/test.txt" }, null, null, null);
With stdout/stderr redirection
var adbClient = new AdbServicesClient();
using var stdout = new MemoryStream();
using var stderr = new MemoryStream();
int exitCode = await adbClient.Execute("abcdefghijklmnop", "ls", new string[] { "-la", "/storage/emulated/0/test.txt" }, null, stdout, stderr);
if (exitCode != 0)
    throw new Exception(Encoding.UTF8.GetString(stderr.ToArray()));
Console.WriteLine(Encoding.UTF8.GetString(stdout.ToArray())); // prints directory listing
With everything redirected
var adbClient = new AdbServicesClient();
using var stdin = new MemoryStream(Encoding.UTF8.GetBytes("Hello World"));
using var stdout = new MemoryStream();
using var stderr = new MemoryStream();
int exitCode = await adbClient.Execute("abcdefghijklmnop", "cat", new string[] {}, stdin, stdout, stderr);
if (exitCode != 0)
    throw new Exception(Encoding.UTF8.GetString(stderr.ToArray()));
Console.WriteLine(Encoding.UTF8.GetString(stdout.ToArray())); // prints "Hello World"

Capture screen

Capture and save as png
var adbClient = new AdbServicesClient();
using Image img = await adbClient.ScreenCapture("abcdefghijklmnop");
img.SaveAsPng("image.png");
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
6.0.0 94 4/9/2026
5.0.1 301 12/20/2024
5.0.0 453 7/23/2023
4.0.0 971 2/23/2023
3.2.0 413 2/18/2023
3.1.1 423 2/12/2023
3.1.0 409 2/11/2023
3.0.0 401 2/11/2023
2.1.0 403 2/10/2023
2.0.0 545 12/7/2022
1.1.0 515 11/17/2022
1.0.0 528 11/17/2022

- fix: upgrade SixLabors.ImageSharp to non-vulnerable version
           - fix: target .NET 8.0 as .NET Standard is no longer required and .NET 6.0 is out of support