1diff --git a/src/lib.rs b/src/lib.rs 2index 2800d9a..ccd8454 100644 3--- a/src/lib.rs 4+++ b/src/lib.rs 5@@ -20,6 +20,10 @@ 6 #![doc(html_favicon_url = "https://developer.actyx.com/img/favicon.ico")] 7 #![no_std] 8 9+// ANDROID: Use std to allow building as a dylib. 10+#[cfg(android_dylib)] 11+extern crate std; 12+ 13 use core::{ 14 fmt::{self, Debug, Formatter}, 15 pin::Pin, 16