(root: &Path, relative_path: &str, os: &str)
| 1766 | } |
| 1767 | |
| 1768 | fn 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 | |
| 1776 | fn parse_online_emulator_serials(output: &str) -> Vec<String> { |
| 1777 | output |
no outgoing calls
no test coverage detected