Android Studio 无法完成操作,找不到Java运行时,请访问http://www.java.com了解有关安装Java的信息

mlnl4t2r  于 2022-11-16  发布在  Android
关注(0)|答案(4)|浏览(148)

我无法在android模拟器或android手机上运行flutter应用程序。我在m1 mac上安装了最近发布的android studio for arm-mac平台。请回答我是否做错了什么,或者是发布本身的问题。
调试控制台输出:

The operation couldn’t be completed. Unable to locate a Java Runtime.
Please visit http://www.java.com for information on installing Java.

Exception: Gradle task assembleDebug failed with exit code 1

Flutter医生-v输出:

The operation couldn’t be completed. Unable to locate a Java Runtime.
Please visit http://www.java.com for information on installing Java.
The operation couldn’t be completed. Unable to locate a Java Runtime.
Please visit http://www.java.com for information on installing Java.
[✓] Flutter (Channel stable, 2.2.1, on macOS 11.4 20F71 darwin-arm, locale en-IN)
    • Flutter version 2.2.1 at /Users/hmnth/FlutterDev/flutter
    • Framework revision 02c026b03c (10 weeks ago), 2021-05-27 12:24:44 -0700
    • Engine revision 0fdb562ac8
    • Dart version 2.13.1

[!] Android toolchain - develop for Android devices (Android SDK version 31.0.0)
    • Android SDK at /Users/hmnth/Library/Android/sdk
    • Platform android-31, build-tools 31.0.0
    • Java binary at: /usr/bin/java
    ✗ Could not determine java version

[✓] Xcode - develop for iOS and macOS
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 12.5, Build version 12E262
    • CocoaPods version 1.10.2

[✓] Chrome - develop for the web
    • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome

[!] Android Studio (version 2020.3)
    • 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.

[!] Android Studio
    • Android Studio at Applications/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
    ✗ Android Studio not found at Applications/Contents
    • Try updating or re-installing Android Studio.

[✓] Connected device (1 available)
    • Chrome (web) • chrome • web-javascript • Google Chrome 92.0.4515.107

! Doctor found issues in 3 categories.
vuktfyat

vuktfyat1#

转到应用程序,然后右键单击Android Studio,然后选择“显示软件包内容”,在jre内创建一个名为jdk的新文件夹,并将jre的内容复制到jdk
这是修复程序的链接https://github.com/flutter/flutter/issues/76215#issuecomment-864407892

hgncfbus

hgncfbus2#

我能够通过执行以下操作修复我的问题,我将我的项目与Gradle文件同步
我下载了Java 8(但我不认为这家伙做的工作)

cngwdvgl

cngwdvgl3#

我遇到这个问题是因为我没有安装Java。如果您在“系统偏好设置”下看不到Java图标,则说明没有安装Java 7或更高版本。Link to java.com

xa9qqrwz

xa9qqrwz4#

2022首先,检查一下你在你的mac上安装Java了吗。之后我建议安装Java 19。如果你完成了这一步
在命令面板上:nano .zshrc将下面的代码添加到文件的底部;

echo 'export JAVA_HOME="$(/usr/libexec/java_home)"' >> ~/.zprofile
echo 'export PATH="$HOME/.daml/bin:$PATH"' >> ~/.zprofile

就这样。你可以走了。

相关问题