项目背景
在vscode运行flutter项目flutter run
报错、报错信息如下:
FAILURE: Build failed with an exception.
* Where:
Build file 'D:\flutterProject\flutterDemo\flutter_app_init\flutter_app\android\app\build.gradle' line: 24
* What went wrong:
A problem occurred evaluating project ':app'.
> Failed to apply plugin 'com.android.internal.application'.
> Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8.
You can try some of the following options:
- changing the IDE settings.
- changing the JAVA_HOME environment variable.
- changing `org.gradle.java.home` in `gradle.properties`.
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 1s
解决方法
- 安装java jdk 11、并且配置环境变量
- java -version查看版本
- 添加grade.java.home路径
- 运行
flutter run
应该没什么问题、祝大家生活愉快。