jnipp icon indicating copy to clipboard operation
jnipp copied to clipboard

C++ wrapper for the Java Native Interface

Results 17 jnipp issues
Sort by recently updated
recently updated
newest added

A couple of fixes here, some are particularly important if you're using jnipp in a library (like the OpenXR loader) and thus don't have 100% control over when the thread...

Hi, First off thanks a lot for this project, it makes working with the JNI much nicer! Now to my issue: I have a native method that is expected to...

now the jnipp code will cast array to object and call deleteglobalref or localref to free array google suggest:https://developer.android.com/training/articles/perf-jni#primitive-arrays

Hi, Thanks for clean and simple API. Do you have plan to support ByteBuffer or ByteArray(byte[]) support to jnipp?

Individual get/set element actions involves a lot of JNI back and forth if operating over large arrays. Provide some bulk operations which set whole array segments, and allow "offline" array...

enhancement

Hey guys, great project! I've noticed that there is no option to load a custom jar, because JavaVMInitArgs is hidden [1] from the public access. AFAIK, to load a custom...

Uncleared exceptions cause SegFault on Android. Android developer docs:[You must not call most JNI functions while an exception is pending.](https://developer.android.com/training/articles/perf-jni#exceptions)

libc++ is removing basic_string support for types that aren't char, wchar_t, char8_t, char16_t, char32_t since they aren't part of the standard (https://reviews.llvm.org/D157058). jchar is `unsigned short` on non-Windows, so basic_string...

Initial work on an alternate way to avoid throwing exceptions, but also avoid terminating - Add exception data type - More work on ExceptionData - More exception data. - Work...

This PR introduces a no-exceptions mode to JNIPP. Some of the downstream consumers of JNIPP are meant to be built with exceptions disabled, but that becomes a bit problematic when...