. Advertisement .
..3..
. Advertisement .
..4..
Android Studio was first announced at the Google I/O conference in 2013 and released to the public in 2014 after various beta versions. Before it was released, Android developers often used tools like Eclipse IDE, a generic Java IDE that supports many other programming languages.
When users attempt to run the software, the following notification may appear: “Unable to find bundled Java version after updated android studio Arctic Fox(2020.3.1) Flutter“.
It is a frequent problem that all developers make. So, what causes this, and how can it be remedied? We’ll go through it all with you.
Why Did This Issue “Unable to find bundled Java version after updated android studio Arctic Fox(2020.3.1) Flutter” Occur?
You’re having a problem. Prior to updating the version of Android Studio, everything went well in the flutter doctor. Once you’ve upgraded Android Studio, when you launch the doctor, it’s displaying “Unable to find the bundled Java version”. Even, you‘ve downloaded the Java installer, and then installed on the M1 Mac, but after you restarted, running Flutter doctor is still showing exactly the same message. It’s odd that when you remove this Arctic Fox version and re-install the old Android Studio version, everything works fine when you run the doctor
Some Basic Approaches
And you know what? You may even be able to fix it in a few simple ways.
Method 1
First, you must configure the system’s JAVA Path to fix this matter. This command prompt can be entered into your terminal.
1. cd /Applications/Android\ Studio.app/Contents/jre
2. ln -s ../jre jdk
3. ln -s "/Library/Internet Plug-Ins/JavaAppletPlugin.plugin" jdk
4. flutter doctor -v
Method 2
When utilizing JetBrains Toolbox, run this prompt to resolve this error.
1. cd /Users/username/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/203.7583922/Android Studio.app/Contents/jre
2. ln -s ../jre jdk
3. ln -s "/Library/Internet Plug-Ins/JavaAppletPlugin.plugin" jdk
4. flutter doctor -v
Conclusion
Android Studio makes app creation significantly easier than non-dedicated software. There is a lot to learn and information available for starters, even through official channels, but they can be outdated, or too much information makes them feel overwhelmed.
The method shown in the figure above has proven to be the most efficient for those who are still puzzled by this issue: “Unable to find bundled Java version after updated android studio Arctic Fox(2020.3.1) Flutter“.
If you still prefer other ideas or have frequent Android-studio questions, we have an active group where all are always willing to assist. Finally, we wish you a wonderful day stuffed with creative code solutions.
Leave a comment