• Home
Name Date Size #Lines LOC

..--

benches/03-May-2024-283222

example/03-May-2024-13166

src/03-May-2024-5,5893,725

tests/03-May-2024-1,6411,279

Android.bpD03-May-20242.5 KiB8883

CHANGELOG.mdD03-May-20249.7 KiB237180

CODE_OF_CONDUCT.mdD03-May-20243.1 KiB7455

CONTRIBUTING.mdD03-May-20245 KiB166112

Cargo.tomlD03-May-20241.2 KiB4942

Cargo.toml.origD03-May-2024708 3932

LICENSED03-May-202410.6 KiB202169

LICENSE-APACHED03-May-202410.6 KiB202169

LICENSE-MITD03-May-20241.1 KiB2217

METADATAD03-May-2024425 2120

MODULE_LICENSE_APACHE2D03-May-20240

OWNERSD03-May-202447 21

README.mdD03-May-20241.1 KiB3522

TEST_MAPPINGD03-May-2024217 1413

build.rsD03-May-20243.5 KiB10973

cargo2android.jsonD03-May-2024161 1010

clippy.tomlD03-May-2024109 32

test_profileD03-May-2024587 2111

README.md

1[![Build Status](https://travis-ci.org/jni-rs/jni-rs.svg?branch=master)](https://travis-ci.org/jni-rs/jni-rs)
2[![Docs](https://docs.rs/jni/badge.svg)](https://docs.rs/jni)
3[![Crates.io](https://img.shields.io/crates/v/jni.svg)](https://crates.io/crates/jni)
4
5# JNI Bindings for Rust
6
7[![Join the chat at https://gitter.im/jni-rs/Lobby](https://badges.gitter.im/jni-rs/Lobby.svg)](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