1diff --git a/src/ffi.rs b/src/ffi.rs 2index 13d98cd..39564dc 100644 3--- a/src/ffi.rs 4+++ b/src/ffi.rs 5@@ -42,7 +42,10 @@ use crate::*; 6 7 #[no_mangle] 8 pub extern fn quiche_version() -> *const u8 { 9- static VERSION: &str = concat!(env!("CARGO_PKG_VERSION"), "\0"); 10+ //static VERSION: &str = concat!(env!("CARGO_PKG_VERSION"), "\0"); 11+ // ANDROID's build system doesn't support environment variables 12+ // so we hardcode the package version here. 13+ static VERSION: &str = concat!("0.6.0", "\0"); 14 VERSION.as_ptr() 15 } 16 17