(id: &str)
| 132 | } |
| 133 | |
| 134 | pub fn is_android_id(id: &str) -> bool { |
| 135 | id.starts_with(ANDROID_ID_PREFIX) |
| 136 | } |
| 137 | |
| 138 | pub fn avd_from_id(id: &str) -> Result<String, AppError> { |
| 139 | id.strip_prefix(ANDROID_ID_PREFIX) |
no outgoing calls
no test coverage detected