Can't find bundled java.The folder doesn't exist: /Users/chloe/Downloads/Android Studio.app/Contents/jbr
时间: 2023-12-10 12:03:11 浏览: 78
新版Android Studio3.6找不到R.java怎么处理
It seems like you are facing an issue with Android Studio not being able to find the bundled Java Development Kit (JDK). You can try the following steps to resolve the issue:
1. Check if the JDK is installed on your system. You can do this by running the command `java -version` in a terminal. If it's not installed, you can download and install it from the Oracle website.
2. Set the JAVA_HOME environment variable to the location of the JDK installation. You can do this by adding the following line to your shell profile file (e.g., ~/.bash_profile for Bash on macOS or Linux):
```
export JAVA_HOME=/path/to/jdk
```
Replace "/path/to/jdk" with the actual path to your JDK installation.
3. Open Android Studio and go to "File" > "Project Structure". Under "SDK Location", make sure that the "JDK Location" points to the correct JDK installation directory.
4. If the above steps don't work, you can try downloading and installing a standalone version of the JDK and point Android Studio to that installation directory.
I hope this helps! Let me know if you have any other questions.
阅读全文