MCPcopy Create free account
hub / github.com/NativeScript/SimDeck / android_sdk_tool_path_for_os

Function android_sdk_tool_path_for_os

packages/server/src/android.rs:1768–1774  ·  view source on GitHub ↗
(root: &Path, relative_path: &str, os: &str)

Source from the content-addressed store, hash-verified

1766}
1767
1768fn android_sdk_tool_path_for_os(root: &Path, relative_path: &str, os: &str) -> PathBuf {
1769 let mut path = root.join(relative_path);
1770 if os == "windows" && path.extension().is_none() {
1771 path.set_extension("exe");
1772 }
1773 path
1774}
1775
1776fn parse_online_emulator_serials(output: &str) -> Vec<String> {
1777 output

Callers 2

android_sdk_tool_pathFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected