android Flutter -任务“:app:dexBuilderList”执行失败

ktecyv1j  于 2024-01-04  发布在  Android
关注(0)|答案(2)|浏览(185)

每当我尝试在Android模拟器上运行Flutter项目时,我都会收到以下错误:

  1. FAILURE: Build failed with an exception.
  2. * What went wrong:
  3. Execution failed for task ':app:dexBuilderDebug'.
  4. > There were multiple failures while executing work items
  5. > A failure occurred while executing com.android.build.gradle.internal.dexing.DexWorkAction
  6. > Failed to process: project_path/android/app/build/intermediates/transforms/APMSPlugin/debug/246, project_path/android/app/build/intermediates/transforms/APMSPlugin/debug/247

字符串
还有更多这样的
日志还包含许多:

  1. Caused by: java.util.concurrent.ExecutionException: com.android.tools.r8.kotlin.H


  1. Caused by: [CIRCULAR REFERENCE: com.android.tools.r8.kotlin.H]


flutter doctor --verbose result:

  1. [✓] Flutter (Channel stable, 3.16.4, on macOS 14.1.1 23B81 darwin-arm64, locale en-AE)
  2. Flutter version 3.16.4 on channel stable at /Users/hassanmohamed/Development/flutter
  3. Upstream repository https://github.com/flutter/flutter.git
  4. Framework revision 2e9cb0aa71 (2 weeks ago), 2023-12-11 14:35:13 -0700
  5. Engine revision 54a7145303
  6. Dart version 3.2.3
  7. DevTools version 2.28.4
  8. [✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0)
  9. Android SDK at /Users/hassanmohamed/Library/Android/sdk
  10. Platform android-34, build-tools 34.0.0
  11. ANDROID_HOME = /Users/hassanmohamed/Library/Android/sdk
  12. ANDROID_SDK_ROOT = /Users/hassanmohamed/Library/Android
  13. Java binary at: /Applications/Android Studio.app/Contents/jbr/Contents/Home/bin/java
  14. Java version OpenJDK Runtime Environment (build 17.0.7+0-17.0.7b1000.6-10550314)
  15. All Android licenses accepted.
  16. [✓] Xcode - develop for iOS and macOS (Xcode 15.1)
  17. Xcode at /Applications/Xcode.app/Contents/Developer
  18. Build 15C65
  19. CocoaPods version 1.13.0
  20. [✓] Chrome - develop for the web
  21. Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
  22. [✓] Android Studio (version 2023.1)
  23. Android Studio at /Applications/Android Studio.app/Contents
  24. Flutter plugin can be installed from:
  25. 🔨 https://plugins.jetbrains.com/plugin/9212-flutter
  26. Dart plugin can be installed from:
  27. 🔨 https://plugins.jetbrains.com/plugin/6351-dart
  28. Java version OpenJDK Runtime Environment (build 17.0.7+0-17.0.7b1000.6-10550314)
  29. [✓] IntelliJ IDEA Community Edition (version 2022.2.5)
  30. IntelliJ at /Applications/IntelliJ IDEA CE.app
  31. Flutter plugin can be installed from:
  32. 🔨 https://plugins.jetbrains.com/plugin/9212-flutter
  33. Dart plugin version 222.4582
  34. [✓] Connected device (4 available)
  35. sdk gphone64 arm64 (mobile) emulator-5554 android-arm64 Android 12 (API 32) (emulator)
  36. iPhone 15 Pro Max (mobile) 7F0F134E-A16B-47E6-843D-C265C809FBC4 ios com.apple.CoreSimulator.SimRuntime.iOS-17-2 (simulator)
  37. macOS (desktop) macos darwin-arm64 macOS 14.1.1 23B81 darwin-arm64
  38. Chrome (web) chrome web-javascript Google Chrome 120.0.6099.129
  39. ! Error: Browsing on the local area network for iPhone. Ensure the device is unlocked and attached with a cable or associated with the same local area network as this Mac.
  40. The device must be opted into Developer Mode to connect wirelessly. (code -27)
  41. [✓] Network resources
  42. All expected network resources are available.
  43. No issues found!


我尝试将gradle版本更新到8.2和8.5,但由于flutter包而无法更新。

g52tjvyc

g52tjvyc1#

感谢ChatGPT,我找到了解决方案,只需将minifyEnabled true添加到buildTypes就解决了这个问题,下面是代码:

  1. buildTypes {
  2. debug {
  3. minifyEnabled true
  4. }
  5. }

字符串

qgzx9mmu

qgzx9mmu2#

在项目目录中运行以下命令以清理和重建项目:

  1. flutter clean
  2. flutter pub get
  3. flutter run

字符串
更新Gradle版本:确保您使用的是兼容版本的Gradle。打开android/build.gradle文件并更新Gradle版本。例如:
类路径'com.android.tools.build:gradle:4.1.0'
更新Android Gradle插件:
implementation 'com.android.tools.build:gradle:4.1.0' Increase Heap Size:

  1. android {
  2. ...
  3. dexOptions {
  4. javaMaxHeapSize "4g"
  5. }
  6. }


https://www.fiverr.com/jinnat75/do-professional-flutter-mobile-app-development-services

展开查看全部

相关问题