modified: src/main.rs
Some checks failed
gitea/Frida-android-native/pipeline/head There was a failure building this commit

This commit is contained in:
Michael Wain 2024-10-07 17:32:54 +03:00
parent f09541c080
commit dc65630dc5

View File

@ -70,13 +70,13 @@ mod jni {
}
impl<'env: 'borrow, 'borrow> FridaLib<'env, 'borrow> {
pub extern "jni" fn start(self, env: &JNIEnv, config_b32: JString,
tun_fd: jint,
close_fd_on_drop: jboolean) -> jint {
pub extern "jni" fn start(self, env: &JNIEnv, config_b32: String,
tun_fd: i32,
close_fd_on_drop: bool) -> jint {
android_logger::init_once(Config::default().with_tag("RUST_FRIDA"));
info!("Hello world!");
info!("Hello world! {:?}", tun_fd);
}