APK Install and App Manager in Rust + Tauri — Building ADB Tools (opens in new tab)
All tests run on an 8-year-old MacBook Air. All results from shipping 7 Mac apps as a solo developer. No sponsored opinion. HiyokoKit includes APK installation and an Android app manager. Both use ADB under the hood. Here's the implementation. APK installation #[tauri::command] async fn install_apk(apk_path: String) -> Result { let output = tokio::process::Command::new("adb") .args(["install", "-r", &apk_path]) // -r = reinstall if exists .output() .await?; let stdout = Stri...
Read the original article