(value: &str)
| 3438 | } |
| 3439 | |
| 3440 | fn looks_like_device_selector(value: &str) -> bool { |
| 3441 | android::is_android_id(value) |
| 3442 | || (value.len() == 36 && value.chars().all(|ch| ch.is_ascii_hexdigit() || ch == '-')) |
| 3443 | } |
| 3444 | |
| 3445 | fn studio_provider_bridge_script() -> anyhow::Result<PathBuf> { |
| 3446 | let mut candidates = Vec::new(); |
no test coverage detected