diff --git a/src/client.rs b/src/client.rs index 024b2e84a..cc10aa858 100644 --- a/src/client.rs +++ b/src/client.rs @@ -2347,9 +2347,9 @@ impl AudioHandler { log::info!("Remote input format: {:?}", format0); #[allow(unused_mut)] let mut config: StreamConfig = config.into(); - #[cfg(not(target_os = "ios"))] + #[cfg(not(any(target_os = "android", target_os = "ios")))] { - // this makes ios audio output not work + // this makes ios and android audio output not work config.buffer_size = cpal::BufferSize::Fixed(64); }