在 Android Studio 3.0 版本中使用 Flutter doctor 时,您可能会遇到错误消息“无法找到捆绑的 Java 版本。”如果您的 Java 版本是最新的并且您的系统上没有安装旧版 Android Studio,这可能会特别令人困惑。要解决此问题,请按照下列步骤操作:
JetBrains Runtime“Android Studio Electric Eel”:
运行以下命令:
cd /Applications/Android\ Studio.app/Contents/jbr ln -s ../jbr jdk ln -s "/Library/Internet Plug-Ins/JavaAppletPlugin.plugin" jdk
导航到 Finder,搜索“Android Studio”,然后:
其他 JetBrains 运行时版本:
运行以下命令:
cd /Applications/Android\ Studio.app/Contents/jre ln -s ../jre jdk ln -s "/Library/Internet Plug-Ins/JavaAppletPlugin.plugin" jdk
JetBrains Toolbox 用户:
将“用户名”替换为您的 macOS 用户名,然后运行:
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
如果问题仍然存在,请考虑以下解决方法:
cd /Applications/Android\ Studio.app/Contents ln -s jbr jre
以上是为什么 Flutter Doctor 在 Android Studio 上报告'无法找到捆绑的 Java 版本”?如何修复?的详细内容。更多信息请关注PHP中文网其他相关文章!