José Pereda
José Pereda
Error message mentions JNI, did you try adding it to the jni-config.json instead? For your info, we removed it from the default generated file jni-config.json: https://github.com/gluonhq/substrate/commit/06a0f1431397eebeabc5bdb626654fc8ae70645b
Hmm, so adding the method doesn't work, because it was removed from JDK 11.0.14 (the one used to build Gluon's GraalVM 22.0.0.3), but your dependencies might be still somehow calling...
This issue might be then with the JDK you are using (is it AdoptOpenJDK?). GraalVM is built with [labsjdk](https://github.com/graalvm/labs-openjdk-11) JDK 11.0.13 (for 22.0.0.2) or 11.0.14 (for 22.0.0.3), and labsjdk is...
I've tested your project with GraalVM 22.0.0.3 (JDK11), on Android 10, Either with an old OpenJDK 11.0.2 or when doing `export JAVA_HOME=$GRAALVM_HOME`, I get ``` [Fri Feb 18 23:47:34 CET...
I don't think there is a public way. For now `--add-exports` might still work.
The issue still happens in the compile phase, when searching for the path for the SDK. The changes in https://github.com/jperedadnr/substrate/commit/c1e2d792aeaa4969848549f84f42178461617bfc have not been upstreamed. In case `XcodeUtils::getSdkDir` fails, we should...
Here is a little hint: https://github.com/FXyz/FXyz/tree/master/FXyz-Core/src/main/java/org/fxyz3d/shapes/primitives/helper/delaunay that is used from a Surface3DMesh https://github.com/FXyz/FXyz/blob/master/FXyz-Core/src/main/java/org/fxyz3d/shapes/primitives/Surface3DMesh.java#L91 In theory that would create a mesh out of your 3D points.
What do you mean? > DelauneyMesh isn't exported yet The code is one year old, it should be in any recent release?
See the javadoc from the code that actually does the Delaunay triangulation: https://github.com/FXyz/FXyz/blob/master/FXyz-Core/src/main/java/org/fxyz3d/shapes/primitives/helper/delaunay/jdt/DelaunayTriangulation.java#L35 I'm not sure if a complex 3D set of scattered unordered points are suitable for this... I...