()
| 173 | } |
| 174 | |
| 175 | pub fn digital_crown_error() -> AppError { |
| 176 | AppError::bad_request("Digital Crown rotation is only available for Apple Watch simulators.") |
| 177 | } |
| 178 | |
| 179 | pub fn tvos_remote_key_for_touch_motion(start_x: f64, start_y: f64, end_x: f64, end_y: f64) -> u16 { |
| 180 | let dx = end_x - start_x; |
no outgoing calls
no test coverage detected