bubba-core 0.2.2

Core runtime for the Bubba mobile framework
Documentation
1
2
3
4
5
6
7
8
9
10
//! # JNI Bridge
//!
//! The Rust side of the Bubba ↔ Android bridge.
//! Java calls these `#[no_mangle]` functions; Rust calls back into Java via the
//! stored `JavaVM` reference.
//!
//! This is the equivalent of React Native's `NativeModule` system.

#[cfg(target_os = "android")]
pub mod android;