1diff --git a/src/lib.rs b/src/lib.rs 2index 52bbbe0..acea490 100644 3--- a/src/lib.rs 4+++ b/src/lib.rs 5@@ -28,6 +28,10 @@ 6 #![deny(missing_docs)] 7 #![cfg_attr(test, deny(warnings))] 8 9+// ANDROID: Use std to allow building as a dylib. 10+#[cfg(android_dylib)] 11+extern crate std; 12+ 13 /// The main macro provided by this crate. See crate documentation for more 14 /// information. 15 #[macro_export] 16