Update Android build scripts. Remove unnecessary project files

This commit is contained in:
Joseph Henry
2021-02-10 18:12:01 -08:00
parent a6fc3e44b8
commit 4e57827637
52 changed files with 116 additions and 596 deletions

View File

@@ -0,0 +1,10 @@
#[link(name = "libzt", kind = "dylib")]
extern {
fn zts_socket(address_family: i32) -> i32;
}
fn main() {
let x = unsafe { zts_socket(100) };
println!("zts_socket() = {}", x);
}