From 813b3505633326e9cfdd638f0812498d181ee069 Mon Sep 17 00:00:00 2001 From: Rob Parrett Date: Mon, 10 Mar 2025 17:17:51 -0700 Subject: [PATCH] Fix android build --- src/font/fallback/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/font/fallback/mod.rs b/src/font/fallback/mod.rs index af67f46..2aa1479 100644 --- a/src/font/fallback/mod.rs +++ b/src/font/fallback/mod.rs @@ -9,7 +9,7 @@ use crate::{Font, FontMatchKey, FontSystem, ShapeBuffer}; use self::platform::*; -#[cfg(not(any(unix, target_os = "windows")))] +#[cfg(not(any(all(unix, not(target_os = "android")), target_os = "windows")))] #[path = "other.rs"] mod platform;