| diff --git a/src/lib.rs b/src/lib.rs |
| index c85fb01..25b0444 100644 |
| //! let checksum = crc16(checksum_range); |
| +// ANDROID: include standard library to build as a dylib |
| feature = "unstable_const", |
| + pub use std::mem; // ANDROID: use std instead of core, since we're not building with no-std. |
| + pub use std::ptr; // ANDROID: use std instead of core, since we're not building with no-std. |
| /// Use type inference to obtain the size of the pointee (without actually using the pointer). |
| diff --git a/src/span_of.rs b/src/span_of.rs |
| index 0592dbd..369e5c6 100644 |
| @@ -155,7 +155,8 @@ macro_rules! span_of { |
| + // ANDROID: use std instead of core, since we're not building wiht no-std. |