--- src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git b/src/lib.rs a/src/lib.rs index f6b41908..6b44d3dc 100644 --- b/src/lib.rs +++ a/src/lib.rs @@ -23,6 +23,10 @@ //! serializers/deserializers will autodetect if a "human friendly" textual //! encoding is being used, and if so encode the points as hexadecimal. +/// Local Android change: Use std to allow building as a dylib. +#[cfg(android_dylib)] +extern crate std; + #[cfg(feature = "alloc")] #[allow(unused_extern_crates)] extern crate alloc;