Ariel Zentner f799c8074a fix regex whitespace for devices_long
In some setups the exact number of spaces didn't match, made it more
generic using the 'whitespace class' (\s)
2022-03-23 15:29:19 +02:00
2022-01-12 21:45:49 +01:00
2022-03-23 15:29:19 +02:00
2022-01-07 21:48:50 +01:00
2022-01-05 11:08:11 +01:00
2022-01-23 21:25:05 +01:00
2022-01-12 21:45:49 +01:00

Rust ADB (Android Debug Bridge) client library

This crate is not affiliated with Android development core team.

It is still under active development, please report found bugs as issues !

Rust crate

Simply add this to your Cargo.toml:

[dependencies]
adb_client = "*"

To launch a command on host device :

let connexion = AdbTcpConnexion::new();
connexion.shell_command("df -h");

To get available ADB devices :

let connexion = AdbTcpConnexion::new();
connexion.devices();

Rust binary

You can install the lightweight adb binary by running the following command :

cargo install adb_client --features adbclient 

https://developer.android.com/studio/command-line/adb

https://github.com/cstyan/adbDocumentation

Description
Rust ADB (Android Debug Bridge) client library
Readme MIT 1.4 MiB
Languages
Rust 100%