Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to find bundled Java version on Flutter

Tags:

flutter

I have Android Studio version 3.0
When I use the command flutter doctor it shows me the following,

Unable to find bundled Java version

My current Java version is (build 1.8.0_131-b11)

like image 818
shariful hasnine Avatar asked Jul 11 '18 09:07

shariful hasnine


People also ask

Which version of Java is compatible with flutter?

Requirements to create Flutter projectJava 11 JDK installed and set in system environment variables. Flutter and Dart extension installed. Connected Device with laptop for run and test flutter applications.

How do I change my Java version on flutter?

Go to File > Project Structure. Select the SDK Location section in the list of the left. Deselect the Use embedded JDK (recommended) option. Enter the absolute path of your installed JDK in the text box.

Does flutter work with Java 11?

flutter - Android Gradle plugin requires Java 11 to run.


1 Answers

For Mac User

Set Java_Home path using below article & then after applying below command

https://mkyong.com/java/how-to-set-java_home-environment-variable-on-mac-os-x/#what-is-usrlibexecjava-home

after that type below command on terminal

cd /Applications/Android\ Studio.app/Contents/jre ln -s ../jre jdk ln -s "/Library/Internet Plug-Ins/JavaAppletPlugin.plugin" jdk flutter doctor -v 

Edit #1:

For Mac users who are using JetBrains Toolbox, here is the solution:

Set Java_Home path using below article & then after applying below command

https://mkyong.com/java/how-to-set-java_home-environment-variable-on-mac-os-x/#what-is-usrlibexecjava-home

after that type below command on terminal

change username to your macOS username

cd /Users/username/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/203.7583922/Android Studio.app/Contents/jre ln -s ../jre jdk ln -s "/Library/Internet Plug-Ins/JavaAppletPlugin.plugin" jdk flutter doctor -v 
like image 170
Nalawala Murtuza Avatar answered Oct 03 '22 03:10

Nalawala Murtuza