Skip to main content

bubba_core/bridge/
mod.rs

1//! # JNI Bridge
2//!
3//! The Rust side of the Bubba ↔ Android bridge.
4//! Java calls these `#[no_mangle]` functions; Rust calls back into Java via the
5//! stored `JavaVM` reference.
6//!
7//! This is the equivalent of React Native's `NativeModule` system.
8
9#[cfg(target_os = "android")]
10pub mod android;