簡體   English   中英

失敗:構建失敗並出現異常 - Flutter

[英]FAILURE: Build failed with an exception - Flutter

我試圖構建我的應用程序,但它總是返回這個奇怪的錯誤:-

Launching lib\main.dart on M2003J15SC in debug mode...

FAILURE: Build failed with an exception.

* What went wrong:
A problem was found with the configuration of task ':location:compileDebugJavaWithJavac'.
> File 'C:\Native\findhelpapp\findhelpapp\build\location\intermediates\annotation_processor_list\debug\annotationProcessors.json' specified for property 'processorListFile' does not exist.

* 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 52s
Exception: Gradle task assembleDebug failed with exit code 1
Exited (sigterm)

我嘗試運行flutter clean並重建項目,但它也不起作用:"(

那么我應該怎么做才能解決這個錯誤?

我的flutter doctor記錄:-

C:\Native\findhelpapp\findhelpapp>flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel stable, 1.20.4, on Microsoft Windows [Version 10.0.18362.1082], locale en-US)
[√] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
[√] Android Studio (version 3.6)
[√] IntelliJ IDEA Community Edition (version 2019.3)
[√] VS Code (version 1.49.1)
[√] Connected device (1 available)

• No issues found!

C:\Native\findhelpapp\findhelpapp>
  1. 檢查 Android SDK 和 Jdk Location

2.復制 gradle.properties 末尾的下一行

android.useAndroidX=true

android.enableJetifier=真

  1. 並設置最新版本

在文件 app\build.gradle

android {
 compileSdkVersion 28

defaultConfig {
minSdkVersion 21
targetSdkVersion 28
multiDexEnabled true

}

4. 運行你的應用程序獲得收益

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM