20 lines
423 B
Rust
Raw Normal View History

#![recursion_limit = "256"]
mod dart_ffi;
mod dart_isolate_wrapper;
2022-06-29 13:39:54 -04:00
mod tools;
2022-01-31 08:52:11 -05:00
2022-01-31 10:11:18 -05:00
#[cfg(target_os = "android")]
2022-01-31 08:52:11 -05:00
use jni::{objects::JClass, objects::JObject, JNIEnv};
2022-01-31 10:11:18 -05:00
#[cfg(target_os = "android")]
2022-01-31 08:52:11 -05:00
#[no_mangle]
#[allow(non_snake_case)]
2022-01-31 10:11:18 -05:00
pub extern "system" fn Java_com_veilid_veilid_VeilidPlugin_init_1android(
2022-01-31 08:52:11 -05:00
env: JNIEnv,
_class: JClass,
ctx: JObject,
) {
2022-12-01 14:32:02 -05:00
veilid_core::veilid_core_setup_android(env, ctx);
2022-01-31 08:52:11 -05:00
}