I am having problems with android studio upon updating to Clectric Eel. This was not a problem before update. I have a Mac M1 and flutter version is Flutter 3.3.10 • channel stable
When Running flutter doctor -v
I get this for the android studio section:
Android Studio (version 2022.1)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/9212-flutter
• Dart plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/6351-dart
✗ Unable to find bundled Java version.
• Try updating or re-installing Android Studio.
How do I resolve this issue?
For macOS users, just go to where is your Android Studio installed.
If you install android studio using the installer use:
cd /Applications/Android\ Studio.app/Contents
If using JetBrains toolbox use:
cd "/Users/ahmedhnewa/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/221.6008.13.2211.9477386/Android Studio.app/Contents"
You can go to the settings of the ide and find where it's installed.
Then just type.
open .
So it will be opened in “Finder.”
Copy the folder jbr
and rename it to jre
I think the flutter team should look into this so the flutter command line.
Now it can know where the bundled JDK is in the new Android Studio update.
Currently, there is no recent update to the flutter tool but after it gets update the issue should be fixed without copying the jbr folder and renaming the copied one to jre:
Edit
For Linux it's almost the same, just the path of android studio is different, it depend on where and how you installed it, for Windows users
Just right click on the android studio on the desktop and open the file location and do the exists same thing on all platforms:
Update
You don't need to do any of this, in the latest version of flutter, it already knows where is the jwk from jbr folder, just update both flutter using: flutter upgrade
, and your android studio ide
So you can delete the jre
folder since there is no need of it.