Open
Description
Description
A user reported on Reddit that exported applications from Processing 4 fail to launch on macOS, showing a JRExLoadFullError
or JRELoadError
popup.
Cause
The export logic in JavaBuild.java
looks for a directory that starts with jdk-
, but in our current setup, the embedded JDK starts with jdk
(without the dash). This causes the path resolution to fail, and no JRE is bundled, leading to the JRExLoadFullError
.