Kofi Otuo
Kofi Otuo
Is there way to return a nullable value instead of a value wrapped in `Optional`? The difficulty is `Optional` works with **Andriod Api Version 24+** (but my projects starts from...
I've written an [interface file generator](https://github.com/Kofituo/rust_interface_file_generator) which works fine so far and is based on flapigen Maybe you could add it to your readme so more users try it and...
Hi there, I wanted to try out this project but I'm faced with multiple errors Here's my java_glue.rs.in file ``` rust use crate::*; use jni_sys::*; foreign_class!( class RustLog { fn...
I'm trying to write a smart contract for a custom blockchain with AccoutId of type `[u8; 20]`. Here's my environment ```rust pub type AccountId = [u8; 20]; impl Environment for...
Hi there, I'm trying out this crate on an android device but I'm facing this error ``` log_panics: thread '' panicked at 'Error happened Permission denied (os error 13)': src/lib.rs:78...
Hi there, I'm trying to get ipaddress and MAC address in a LAN. But for now, I'm just trying out the crate. The examples in the example folder don't work...
Hello, The Kubo node has an RPC API endpoint. Its in the config file ```json "Addresses": { "API": "/ip4/0.0.0.0/tcp/5002", // this "Announce": null, "AppendAnnounce": null, "Gateway": "/ip4/0.0.0.0/tcp/9002", "NoAnnounce": null, "Swarm":...