From aa248fb837f2d9b88ab733cd56757ce688d7aabc Mon Sep 17 00:00:00 2001 From: Irving Ou Date: Wed, 7 Feb 2024 12:48:44 -0500 Subject: [PATCH] add andriod --- examples/tcp_client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tcp_client.rs b/examples/tcp_client.rs index acc1eb9..0048225 100644 --- a/examples/tcp_client.rs +++ b/examples/tcp_client.rs @@ -151,7 +151,7 @@ fn main() -> io::Result<()> { Ok(()) } -#[cfg(target_os = "macos")] +#[cfg(any(target_os = "macos", target_os = "android"))] fn main() { println!("This example is not yet supported on this platform."); }