jni-v0.14.0
·
448 commits
to main
since this release
What's Changed
- Added
DynamicLibraryLoadErrorwhich is thrown when the dynamic library fails
to load.HelperNotFoundErrorwill only be thrown when the helper library
cannot be found. - Update the README.md to include info about generating bindings for built-in
java types. - Do not require a
dylibDirwhen runningJni.spawnfrom Dart standalone,
instead use the default value ofbuild/jni_libs. - Added
JArray.of, which allows aJArrayto be constructed from an
Iterable. - Added
JObject.isA, which checks whether aJObjectis a instance of a
java class. - Do not require JAWT when building for desktop.
- Added
JByteArray.from, which allows aJByteArrayto be constructed
from anIterable<int>.