radb_client 1.2.5

adb client for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use std::path::PathBuf;

mod apkanalyzer;

/// See <a href='https://developer.android.com/tools/apkanalyzer'>Android Apk Analyzer</a>
/// for more information.
#[derive(Debug, Clone)]
pub struct ApkAnalyzer {
	pub(crate) path: PathBuf,
	pub(crate) debug: bool,
}

#[derive(Debug, Clone)]
pub struct ApkSummary {
	pub package_name: String,
	pub version_code: String,
	pub version_name: String,
}