Abhishek D
Abhishek D

Reputation: 475

Unable to run react native project due to java version 10

I have got the react native installation done but with latest jdk version that is v10.
Now when I try to run the project using the command react-native run-android, I am getting the following error,

FAILURE: Build failed with an exception.

* What went wrong:
Could not determine java version from '10'.

I'm pretty much new to the MAC environment, How do I roll back to the previous working version of java in Mac? How I can fix this issue?

Upvotes: 9

Views: 3756

Answers (2)

Abhishek sheshagiri
Abhishek sheshagiri

Reputation: 84

Downgrade the Java version. This is a problem with the latest version of java.

Upvotes: 1

TheParam
TheParam

Reputation: 10541

You need a change in the Android

Gradle properties file.

PROJECT_PATH/android/gradle/wrapper/gradle-wrapper.properties

Update your distributionUrl to the following

distributionUrl=https\://services.gradle.org/distributions/gradle-4.3-rc-2-all.zip

Upvotes: 14

Related Questions