1[](https://github.com/jni-rs/jni-rs/actions) 2[](https://docs.rs/jni) 3[](https://crates.io/crates/jni) 4 5# JNI Bindings for Rust 6 7[](https://gitter.im/jni-rs/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) 8 9This project provides complete JNI bindings for Rust, allowing to: 10 11- Implement native Java methods for JVM and Android in Rust 12- Call Java code from Rust 13- Embed JVM in Rust applications and use any Java libraries 14 15See the [docs](https://docs.rs/jni) for more details. 16 17## Example 18``` 19cd example 20make 21``` 22 23## Contribution 24 25See the [Contribution Guide](CONTRIBUTING.md) for details. 26 27 28## License 29 30Licensed under either of 31 32 * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) 33 * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) 34at your option. 35