Could not determine java version from '11.0.1' when running “npm run android”
I'm trying to run react native on windows 10. when I run npm run android i get this following error
Starting JS server...
Building and installing the app on the device (cd android && gradlew.bat installDebug)...
FAILURE: Build failed with an exception.
What went wrong:
Could not determine java version from '11.0.1'.Try:
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.Get more help at https://help.gradle.org
Could not install the app on the device, read the error above for details.
Make sure you have an Android emulator running or a device connected and have
set up your Android development environment:
https://facebook.github.io/react-native/docs/getting-started.html

add a comment |
I'm trying to run react native on windows 10. when I run npm run android i get this following error
Starting JS server...
Building and installing the app on the device (cd android && gradlew.bat installDebug)...
FAILURE: Build failed with an exception.
What went wrong:
Could not determine java version from '11.0.1'.Try:
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.Get more help at https://help.gradle.org
Could not install the app on the device, read the error above for details.
Make sure you have an Android emulator running or a device connected and have
set up your Android development environment:
https://facebook.github.io/react-native/docs/getting-started.html

add a comment |
I'm trying to run react native on windows 10. when I run npm run android i get this following error
Starting JS server...
Building and installing the app on the device (cd android && gradlew.bat installDebug)...
FAILURE: Build failed with an exception.
What went wrong:
Could not determine java version from '11.0.1'.Try:
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.Get more help at https://help.gradle.org
Could not install the app on the device, read the error above for details.
Make sure you have an Android emulator running or a device connected and have
set up your Android development environment:
https://facebook.github.io/react-native/docs/getting-started.html

I'm trying to run react native on windows 10. when I run npm run android i get this following error
Starting JS server...
Building and installing the app on the device (cd android && gradlew.bat installDebug)...
FAILURE: Build failed with an exception.
What went wrong:
Could not determine java version from '11.0.1'.Try:
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.Get more help at https://help.gradle.org
Could not install the app on the device, read the error above for details.
Make sure you have an Android emulator running or a device connected and have
set up your Android development environment:
https://facebook.github.io/react-native/docs/getting-started.html


asked Oct 30 '18 at 8:03


Varghese ThomasVarghese Thomas
2827
2827
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Make sure you have set the necessary paths for Android and Java in your shell.
JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-11.0.1.jdk/Contents/Home
ANDROID_HOME=/Users/username/Library/Android/sdk
ANDROID_NDK_HOME=/Users/username/Library/Android/sdk/ndk-bundle
Also, sometimes react-native versions may get messed up with the Java versions so it's not so recommended to use Java SDK 11 just yet, so better Java 8 which it's a more stable version.
Try to uninstall the Java SDK 11 and install Java 8, then update your paths in your shell config to match the correct locations, then try again and your app should work like expected.
If you installed Java through homebrew try:
brew cask uninstall java
brew tap caskroom/versions
brew cask install java8
And you're done.
If you installed it directly try rm -rf /Library/Java/JavaVirtualMachines/jdk<version>.jdk
to remove it and then download Java 8 either directly or through homebrew (recommended).
dv is because your paths and mention of homebrew indicate macOS, but OP clearly stated they're using Windows 10.
– shoover
Nov 19 '18 at 23:09
add a comment |
Android does not support the latest JAVA version sometimes.
I will recommend that use JAVA 8 which is the stablest version for Android.
-
Follow the link to install the JDK and update JAVA_HOME again
https://docs.oracle.com/cd/E19182-01/820-7851/inst_cli_jdk_javahome_t/
(Ignore the title inside the link, just follow the steps on the bottom)
add a comment |
TL; DR Downgrade your Java version to Java 8.
Sometime between Java 9 and Java 11, the format of java -version has changed, resulting in breakage in Gradle.
Gradle like the 1.x versions:
As I tested:
λ ~/m-demo/ master jenv versions
system
11.0
11.0.1
1.8
* 1.8.0.191 (set by ~/.jenv/version)
openjdk64-11.0.1
openjdk64-1.8.0.191
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53059771%2fcould-not-determine-java-version-from-11-0-1-when-running-npm-run-android%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Make sure you have set the necessary paths for Android and Java in your shell.
JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-11.0.1.jdk/Contents/Home
ANDROID_HOME=/Users/username/Library/Android/sdk
ANDROID_NDK_HOME=/Users/username/Library/Android/sdk/ndk-bundle
Also, sometimes react-native versions may get messed up with the Java versions so it's not so recommended to use Java SDK 11 just yet, so better Java 8 which it's a more stable version.
Try to uninstall the Java SDK 11 and install Java 8, then update your paths in your shell config to match the correct locations, then try again and your app should work like expected.
If you installed Java through homebrew try:
brew cask uninstall java
brew tap caskroom/versions
brew cask install java8
And you're done.
If you installed it directly try rm -rf /Library/Java/JavaVirtualMachines/jdk<version>.jdk
to remove it and then download Java 8 either directly or through homebrew (recommended).
dv is because your paths and mention of homebrew indicate macOS, but OP clearly stated they're using Windows 10.
– shoover
Nov 19 '18 at 23:09
add a comment |
Make sure you have set the necessary paths for Android and Java in your shell.
JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-11.0.1.jdk/Contents/Home
ANDROID_HOME=/Users/username/Library/Android/sdk
ANDROID_NDK_HOME=/Users/username/Library/Android/sdk/ndk-bundle
Also, sometimes react-native versions may get messed up with the Java versions so it's not so recommended to use Java SDK 11 just yet, so better Java 8 which it's a more stable version.
Try to uninstall the Java SDK 11 and install Java 8, then update your paths in your shell config to match the correct locations, then try again and your app should work like expected.
If you installed Java through homebrew try:
brew cask uninstall java
brew tap caskroom/versions
brew cask install java8
And you're done.
If you installed it directly try rm -rf /Library/Java/JavaVirtualMachines/jdk<version>.jdk
to remove it and then download Java 8 either directly or through homebrew (recommended).
dv is because your paths and mention of homebrew indicate macOS, but OP clearly stated they're using Windows 10.
– shoover
Nov 19 '18 at 23:09
add a comment |
Make sure you have set the necessary paths for Android and Java in your shell.
JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-11.0.1.jdk/Contents/Home
ANDROID_HOME=/Users/username/Library/Android/sdk
ANDROID_NDK_HOME=/Users/username/Library/Android/sdk/ndk-bundle
Also, sometimes react-native versions may get messed up with the Java versions so it's not so recommended to use Java SDK 11 just yet, so better Java 8 which it's a more stable version.
Try to uninstall the Java SDK 11 and install Java 8, then update your paths in your shell config to match the correct locations, then try again and your app should work like expected.
If you installed Java through homebrew try:
brew cask uninstall java
brew tap caskroom/versions
brew cask install java8
And you're done.
If you installed it directly try rm -rf /Library/Java/JavaVirtualMachines/jdk<version>.jdk
to remove it and then download Java 8 either directly or through homebrew (recommended).
Make sure you have set the necessary paths for Android and Java in your shell.
JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-11.0.1.jdk/Contents/Home
ANDROID_HOME=/Users/username/Library/Android/sdk
ANDROID_NDK_HOME=/Users/username/Library/Android/sdk/ndk-bundle
Also, sometimes react-native versions may get messed up with the Java versions so it's not so recommended to use Java SDK 11 just yet, so better Java 8 which it's a more stable version.
Try to uninstall the Java SDK 11 and install Java 8, then update your paths in your shell config to match the correct locations, then try again and your app should work like expected.
If you installed Java through homebrew try:
brew cask uninstall java
brew tap caskroom/versions
brew cask install java8
And you're done.
If you installed it directly try rm -rf /Library/Java/JavaVirtualMachines/jdk<version>.jdk
to remove it and then download Java 8 either directly or through homebrew (recommended).
edited Oct 30 '18 at 22:20
answered Oct 30 '18 at 22:13


bntziobntzio
629621
629621
dv is because your paths and mention of homebrew indicate macOS, but OP clearly stated they're using Windows 10.
– shoover
Nov 19 '18 at 23:09
add a comment |
dv is because your paths and mention of homebrew indicate macOS, but OP clearly stated they're using Windows 10.
– shoover
Nov 19 '18 at 23:09
dv is because your paths and mention of homebrew indicate macOS, but OP clearly stated they're using Windows 10.
– shoover
Nov 19 '18 at 23:09
dv is because your paths and mention of homebrew indicate macOS, but OP clearly stated they're using Windows 10.
– shoover
Nov 19 '18 at 23:09
add a comment |
Android does not support the latest JAVA version sometimes.
I will recommend that use JAVA 8 which is the stablest version for Android.
-
Follow the link to install the JDK and update JAVA_HOME again
https://docs.oracle.com/cd/E19182-01/820-7851/inst_cli_jdk_javahome_t/
(Ignore the title inside the link, just follow the steps on the bottom)
add a comment |
Android does not support the latest JAVA version sometimes.
I will recommend that use JAVA 8 which is the stablest version for Android.
-
Follow the link to install the JDK and update JAVA_HOME again
https://docs.oracle.com/cd/E19182-01/820-7851/inst_cli_jdk_javahome_t/
(Ignore the title inside the link, just follow the steps on the bottom)
add a comment |
Android does not support the latest JAVA version sometimes.
I will recommend that use JAVA 8 which is the stablest version for Android.
-
Follow the link to install the JDK and update JAVA_HOME again
https://docs.oracle.com/cd/E19182-01/820-7851/inst_cli_jdk_javahome_t/
(Ignore the title inside the link, just follow the steps on the bottom)
Android does not support the latest JAVA version sometimes.
I will recommend that use JAVA 8 which is the stablest version for Android.
-
Follow the link to install the JDK and update JAVA_HOME again
https://docs.oracle.com/cd/E19182-01/820-7851/inst_cli_jdk_javahome_t/
(Ignore the title inside the link, just follow the steps on the bottom)
answered Nov 27 '18 at 16:03


Allen WangAllen Wang
44549
44549
add a comment |
add a comment |
TL; DR Downgrade your Java version to Java 8.
Sometime between Java 9 and Java 11, the format of java -version has changed, resulting in breakage in Gradle.
Gradle like the 1.x versions:
As I tested:
λ ~/m-demo/ master jenv versions
system
11.0
11.0.1
1.8
* 1.8.0.191 (set by ~/.jenv/version)
openjdk64-11.0.1
openjdk64-1.8.0.191
add a comment |
TL; DR Downgrade your Java version to Java 8.
Sometime between Java 9 and Java 11, the format of java -version has changed, resulting in breakage in Gradle.
Gradle like the 1.x versions:
As I tested:
λ ~/m-demo/ master jenv versions
system
11.0
11.0.1
1.8
* 1.8.0.191 (set by ~/.jenv/version)
openjdk64-11.0.1
openjdk64-1.8.0.191
add a comment |
TL; DR Downgrade your Java version to Java 8.
Sometime between Java 9 and Java 11, the format of java -version has changed, resulting in breakage in Gradle.
Gradle like the 1.x versions:
As I tested:
λ ~/m-demo/ master jenv versions
system
11.0
11.0.1
1.8
* 1.8.0.191 (set by ~/.jenv/version)
openjdk64-11.0.1
openjdk64-1.8.0.191
TL; DR Downgrade your Java version to Java 8.
Sometime between Java 9 and Java 11, the format of java -version has changed, resulting in breakage in Gradle.
Gradle like the 1.x versions:
As I tested:
λ ~/m-demo/ master jenv versions
system
11.0
11.0.1
1.8
* 1.8.0.191 (set by ~/.jenv/version)
openjdk64-11.0.1
openjdk64-1.8.0.191
answered Jan 1 at 14:16
Ali Ben MessaoudAli Ben Messaoud
9,38284574
9,38284574
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53059771%2fcould-not-determine-java-version-from-11-0-1-when-running-npm-run-android%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown