Search Issue Tracker
Fixed in 5.5.0
Votes
0
Found in
5.3.3p2
Issue ID
775603
Regression
No
[WebGL][OSX] Java install pop up appears during build process
-e: see title, process continues
-repro:
--create new project
--build for WebGL
--NOTICE java popup while it is building
Comments (3)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Addressables Report window UI is broken when opening via Build > New Build > Default Build Script
 - Addressables Profiles window UI break when creating a new Variable with a long name
 - No character limit when renaming Profile in Addressables Profile window, allowing excessively long names
 - Blurry, low quality Active Profile icon used in Addressables Profiles window
 - Tree Asset Preview window is not updated after assigning a new Material
 
JoeStrout
Jul 02, 2016 13:51
For what it's worth, I find experimentally that you CAN ignore this dialog, and just click OK three times per build. Actually installing Java does not appear to be necessary for the build to complete.
JoeStrout
Jul 02, 2016 13:38
Still present in 5.3.4. Of course maybe "fixed in future release" means some more future release than that.
Every other bug system on the planet provides a little more detail, such as WHEN the bug was fixed, so we can get some clue as to which release it might appear in. And maybe even some comments from the engineers like "yeah, you can ignore that pop-up" or "oops, yeah, you need to actually install Java in order to build for WebGL." It's really frustrating how Unity's bug system doesn't provide for any such feedback, leaving us just as much in the dark as we were before finding the existing report.
guycalledseven
Jun 16, 2016 12:41
You should check to see if java AND javac is installed properly.
The easiest method is via brew
> brew cask install java
then check your ENV variables for JAVA_HOME:
export JAVA_HOME=/Library/Java/Home
export PATH=${PATH}:$JAVA_HOME/bin
then logout/login or restart and check if everything works:
>java -version
java version "1.8.0_92"
Java(TM) SE Runtime Environment (build 1.8.0_92-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.92-b14, mixed mode)
>javac -version
javac 1.8.0_92
> which java
/usr/bin/java
> which javac
/usr/bin/javac
Hope this helps. :)
Neven