Flutter:Android Gradle插件需要Java 17才能运行,您当前使用的是Java 11

v1uwarro  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(511)

我一直在尝试将flutter_stripe软件包升级到10.0.0版本,它需要gradle 8.0 0r更高.
下面是我调试控制台的样子:

  1. Launching lib\main.dart on 21121119SG in debug mode...
  2. FAILURE: Build failed with an exception.
  3. * Where:
  4. Build file 'C:\Users\morsv\Documents\Flutter Projects\book_door\android\app\build.gradle' line: 24
  5. * What went wrong:
  6. A problem occurred evaluating project ':app'.
  7. > Failed to apply plugin 'com.android.internal.application'.
  8. > Android Gradle plugin requires Java 17 to run. You are currently using Java 11.
  9. Your current JDK is located in C:\Program Files\Android\Android Studio\jre
  10. You can try some of the following options:
  11. - changing the IDE settings.
  12. - changing the JAVA_HOME environment variable.
  13. - changing `org.gradle.java.home` in `gradle.properties`.
  14. * Try:
  15. > Run with --stacktrace option to get the stack trace.
  16. > Run with --info or --debug option to get more log output.
  17. > Run with --scan to get full insights.
  18. * Get more help at https://help.gradle.org
  19. BUILD FAILED in 1s
  20. Exception: Gradle task assembleDebug failed with exit code 1
  21. Exited (1).

字符串
我尝试在IDE设置中更改java版本,尝试将java 17添加到我的环境变量中,并尝试编辑gradle.properties文件,但没有任何工作.我做错了什么吗?(我正在使用vscode btw是否有特殊的方法来更改vscode的jdk?)

qv7cva1a

qv7cva1a1#

正在构建中。gradle
变化

  1. compileOptions {
  2. sourceCompatibility = JavaVersion.VERSION_11
  3. targetCompatibility = JavaVersion.VERSION_11
  4. }
  5. kotlinOptions {
  6. jvmTarget = '11'
  7. }

字符串

  1. compileOptions {
  2. sourceCompatibility = JavaVersion.VERSION_17
  3. targetCompatibility = JavaVersion.VERSION_17
  4. }
  5. kotlinOptions {
  6. jvmTarget = '17'
  7. }


尝试更新gradle如果不工作

展开查看全部

相关问题