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