this-kirke
this-kirke
Not a maintainer or contributor, but I've been working with this library a bit lately. [Here](https://gist.github.com/this-kirke/f57f36e44bde36d0303cddd150437902)'s a simple gist which shows how to register a static native method to a...
Not a maintainer or contributor, but I've been working with this library a bit lately. My thoughts: This is intended - there is a distinction between jni::Constructor and jni::Method. Constructors...
1. The Calculator example is an example of Native Peer. Native peers are of type `jni::Object` meaning their accompanying Java classpath is exposed by the `public static Name()` method. The...
For marshaling strings, the methods you want to know are: ```cpp const char* c_str = "Hello World"; std::string std_str( c_str ); jni::Local c_string_to_java_string = jni::Make( env, c_str ); jni::Local std_string_to_java_string...
Hi Paulo! Thank you for the review. I've updated with requested changes; all tests pass.
Thank you for the detailed review! I agree on all points. I think everything should be resolved now; please let me know if there's anything else you notice. We can...