diff --git a/examples/window_run_return.rs b/examples/window_run_return.rs index 81ddc5a225..09568a85b1 100644 --- a/examples/window_run_return.rs +++ b/examples/window_run_return.rs @@ -6,7 +6,8 @@ target_os = "dragonfly", target_os = "freebsd", target_os = "netbsd", - target_os = "openbsd" + target_os = "openbsd", + target_os = "android", ))] fn main() { use std::{thread::sleep, time::Duration}; @@ -57,7 +58,7 @@ fn main() { } } -#[cfg(any(target_os = "ios", target_os = "android", target_arch = "wasm32"))] +#[cfg(any(target_os = "ios", target_arch = "wasm32"))] fn main() { println!("This platform doesn't support run_return."); }