ivnsch
ivnsch
Thanks. I downloaded the sdk and set the env variables but it still complains about not finding clang... ok, this and Emscripten seem a bit complicated for what I had...
How to mute this in a Typescript project? None of the suggested workarounds are working.
Have there been any updates on this? I'm also now very confused - I opened an [issue](https://github.com/realm/realm-cocoa/issues/5381) a few months ago, asking how to convert a local realm to a...
@bigfish24 Thanks for the clarifications and that's exactly what I did! It was a bit tedious process though, as I've a lot of objects, with dependencies among them, lists and...
Can confirm - getting the same error with `0.2.3` and `wasm-pack`.
Same problem for the text reader! I want to show overlays over the text but with the autofocus delays this isn't usable.
There are other repos with Flutter templates (which you probably have found by now). I don't see a need to make another one. Just to clarify, why would Rust need...
I'd solve this kind of situation at library level, i.e. the native (Android in this case) library used in the plugin would have a dedicated Rust binary with the JNI...
Could you also thematize `std::mem::forget` maybe? I've seen it used to pass control of the memory management to the caller (which would be c++ is your examples).
@Michael-F-Bryan Thanks for the quick reply! Example: ```rust use std::os::raw::{c_char}; use core_foundation::string::{CFString, CFStringRef}; use core_foundation::base::TCFType; // ... #[no_mangle] pub unsafe extern "C" fn get_reports(interval_number: u32, interval_length: u32) -> CFStringRef {...