When I gave the command to build the expo app with the help of the eas build command. It gave me this π error.
[stderr]
FAILURE: Build failed with an exception.
[stderr]
* What went wrong:
[stderr]
Execution failed for task ':expo-font:compileReleaseJavaWithJavac'.
[stderr]
> Could not target platform: 'Java SE 11' using tool chain: 'JDK 8 (1.8)'.
[stderr]
* Try:
[stderr]
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
[stderr]
* Get more help at https://help.gradle.org
[stderr]
BUILD FAILED in 3m 26s
Error: Gradle build failed with unknown error. Please see logs for the "Run gradlew" phase.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hi there,
Gradle uses the Java distribution defined in your
JAVA_HOME
environment variable, you need to make sure that So make sure that theJAVA_HOME
variable is set to a valid JDK 11 path.To check if this is the case:
And then check your
JAVA_HOME
variable:For more information on how to set that up, check out this tutorial here:
https://www.digitalocean.com/community/tutorials/how-to-install-java-with-apt-on-ubuntu-22-04#step-3-setting-the-java_home-environment-variable
Best,
Bobby