Execution failed for task :app:compileflutterbuilddebug.

Solution in case you are facing this problem after running code from a cloned repository on GitHub:

Show

Step 1 : Create a new flutter project at your local system

Step 2 : Copy the code given in main.dart file of stub project and paste it into main.dart file of your local project

Step 3 : Make an 'assets' folder in your local project

Step 4 : download asset-files from GitHub and put them into your local 'assets' folder

Step 5 : in your local pubspec.yaml file, add dependency for your 'assets' folder

Step 6 : Rename MyApp() in widget testing file to MaterialApp()

Checkout my full answer here for an almost same question : https://stackoverflow.com/a/71882107/18520267

how to solve Execution failed for task :app:compileFlutterBuildDebug

Questions : how to solve Execution failed for task :app:compileFlutterBuildDebug

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00

7766

I was trying to run my Flutter app and this anycodings_android shows up:

    Compiler message:
lib/main.dart:1:8: Error: Not found: 'dart:html'
import 'dart:html';
       ^
Invalid depfile: C:\Users\IMBA\AndroidStudioProjects\mi_card_flutter-master\.dart_tool\flutter_build\410385fb4867e1d74565d68665ecb577\kernel_snapshot.d
Invalid depfile: C:\Users\IMBA\AndroidStudioProjects\mi_card_flutter-master\.dart_tool\flutter_build\410385fb4867e1d74565d68665ecb577\kernel_snapshot.d
...
Compiler message:
lib/main.dart:1:8: Error: Not found: 'dart:html'
import 'dart:html';
       ^
Unhandled exception:
FileSystemException(uri=org-dartlang-untranslatable-uri:dart%3Ahtml; message=StandardFileSystem only supports file:* and data:* URIs)
#0      StandardFileSystem.entityForUri (package:front_end/src/api_prototype/standard_file_system.dart:33:7)
#1      asFileUri (package:vm/kernel_front_end.dart:567:37)
#2      writeDepfile (package:vm/kernel_front_end.dart:760:21)
<asynchronous suspension>
#3      FrontendCompiler.compile (package:frontend_server/frontend_server.dart:536:15)
<asynchronous suspension>
#4      _FlutterFrontendCompiler.compile (package:flutter_frontend_server/server.dart:40:22)
#5      starter (package:flutter_frontend_server/server.dart:178:27)
#6      main (file:///C:/b/s/w/ir/cache/builder/src/flutter/flutter_frontend_server/bin/starter.dart:8:30)
#7      _startIsolate.<anonymous closure> (dart:isolate-patch/isolate_patch.dart:299:32)
#8      _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:168:12)

Target kernel_snapshot failed: Exception: Errors during snapshot creation: null
build failed.

FAILURE: Build failed with an exception.

* Where:
Script 'C:\Users\IMBA\flutter\packages\flutter_tools\gradle\flutter.gradle' line: 882

* What went wrong:
Execution failed for task ':app:compileFlutterBuildDebug'.
> Process 'command 'C:\Users\IMBA\flutter\bin\flutter.bat'' finished with non-zero exit value 1

* 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 16s
Exception: Gradle task assembleDebug failed with exit code 1

And something else showed up after I used anycodings_android the --scan flag in the problem section.

java.lang.ClassNotFoundException: com.google.wireless.android.sdk.stats.IntellijIndexingStats$Index
    at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    at com.intellij.util.indexing.counters.IndexCounters.<clinit>(IndexCounters.java:34)
    at com.intellij.util.indexing.impl.MapReduceIndex.<init>(MapReduceIndex.java:94)
    at com.intellij.util.indexing.impl.MapReduceIndex.<init>(MapReduceIndex.java:110)
    at org.jetbrains.jps.backwardRefs.index.CompilerReferenceIndex$CompilerMapReduceIndex.<init>(CompilerReferenceIndex.java:248)
    at org.jetbrains.jps.backwardRefs.index.CompilerReferenceIndex.<init>(CompilerReferenceIndex.java:84)
    at org.jetbrains.jps.backwardRefs.JavaCompilerBackwardReferenceIndex.<init>(JavaCompilerBackwardReferenceIndex.java:12)
    at org.jetbrains.jps.backwardRefs.JavaBackwardReferenceIndexWriter.initialize(JavaBackwardReferenceIndexWriter.java:80)
    at org.jetbrains.jps.incremental.java.JavaBuilder.buildStarted(JavaBuilder.java:149)
    at org.jetbrains.jps.incremental.IncProjectBuilder.runBuild(IncProjectBuilder.java:359)
    at org.jetbrains.jps.incremental.IncProjectBuilder.build(IncProjectBuilder.java:178)
    at org.jetbrains.jps.cmdline.BuildRunner.runBuild(BuildRunner.java:139)
    at org.jetbrains.jps.cmdline.BuildSession.runBuild(BuildSession.java:288)
    at org.jetbrains.jps.cmdline.BuildSession.run(BuildSession.java:121)
    at org.jetbrains.jps.cmdline.BuildMain$MyMessageHandler.lambda$channelRead0$0(BuildMain.java:228)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:748)

I took all the material of this Flutter app anycodings_android from the appbrewery Flutter course. This anycodings_android happens when I was trying to make the MIcard anycodings_android project. Any thoughts to solving this anycodings_android problem?

Total Answers 20

30

Answers 1 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

Something that work for me is: Delete anycodings_dart your pubspec.lock, and press 'Pub Get' anycodings_dart in your pubspec.yaml, it'll regenerate anycodings_dart pubspec.lock file again and should fix anycodings_dart the problem.

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

mRahman

4

Answers 2 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

Go to pubspec.yaml file, try doing anycodings_dart Packages get | Pub get, and then build anycodings_dart the project again.

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

raja

1

Answers 3 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

I faced the same error and further, I anycodings_dart tried:

  1. flutter clean
  2. flutter pub get in the terminal, and the issue solved!

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

joy

1

Answers 4 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

Optimizing imports (Ctrl + Alt + O) in anycodings_dart Android Studio solved the issue for me.

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

raja

5

Answers 5 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

Just faced this issue, I solved it by anycodings_dart removing an unused import

import 'dart:js';

the issue started when I added it by anycodings_dart mistake, took a while to realize it was anycodings_dart the issue

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

jidam

3

Answers 6 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

Just in case, do this:

IntelliJ/Android Studio: "Edit anycodings_dart Configurations" (in your run anycodings_dart configurations) → "Additional anycodings_dart run args".

VS Code: search for "Flutter run anycodings_dart additional args" in your user settings.

Then, add:

--no-sound-null-safety

This fixed the problem for me. What this anycodings_dart basically does is that, if you use an anycodings_dart import that doesn't support null safety, anycodings_dart Flutter ignores it.

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

miraj

6

Answers 7 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

This should work!!!

flutter clean,


flutter pub get,


flutter build appbundle --release anycodings_dart --no-tree-shake-icons

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

joy

1

Answers 8 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

This error happens when indentation is anycodings_dart not proper in pubspec.yaml file. Make anycodings_dart sure font and other dependencies are anycodings_dart having right indentation.

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

jidam

4

Answers 9 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

Removing .gradle folder helped

Gradle is located at

On Windows: %USERPROFILE%\.gradle

On Mac / UNIX: ~/.gradle
  1. Close android studio.
  2. Remove whole .gradle folder.
  3. Open Android studio and build.

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

jidam

5

Answers 10 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

I found solution update flutter sdk.

flutter channel stable

flutter upgrade --force

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

joy

2

Answers 11 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

This worked for me.

Deleted build and android/app/build.

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

jidam

5

Answers 12 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

  1. Go to the pubspec.yaml file and Download packages

OR

  1. Go to Terminal flutter pub get

  2. Upgrade Flutter flutter upgrade --force

  3. Run Flutter App Press F5 or flutter run

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

joy

4

Answers 13 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

Try this, it might work for you

flutter clean,

flutter pub get,

flutter build apk --release --no-tree-shake-icons

If you have flavours then add flavour anycodings_dart with the build command. And update the anycodings_dart minimumsdk to a higher version anycodings_dart compatible with java version.

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

jidam

5

Answers 14 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

I couldn't build for iOS, so I deleted anycodings_dart flutter/bin/cache/artifacts. iOS works anycodings_dart well then building Android had the same anycodings_dart error. I tried flutter upgrade and that anycodings_dart solved the problem.

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

raja

5

Answers 15 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

Most of the time for me it's like

  • Misspelled assets name
  • Non-Existing asset/directory name

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

miraj

1

Answers 16 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

I managed to solve this problem by anycodings_dart reading a different topic here: anycodings_dart Recompile with Xlint

First, find your build.gradle file from anycodings_dart the Android folder anycodings_dart (Android/app/build.gradle)

Then paste the following code inside the anycodings_dart android brackets {}:

allprojects {
tasks.withType(JavaCompile) {
    options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}}

I have pasted it at the bottom before anycodings_dart the end bracket and it worked for me.

After this, just restart your app and it anycodings_dart should work.

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

jidam

6

Answers 17 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

I also tried this, thanks to iapicca

run in your terminal

flutter channel stable

flutter upgrade --force

flutter pub cache repair

next,

cd <YOUR APP FOLDER>

flutter clean

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

jidam

2

Answers 18 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

In my case, it was because of anycodings_dart flutter/bin/cache/artifact folder. Be anycodings_dart sure that you didn't manipulate this anycodings_dart folder before.

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

joy

6

Answers 19 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

your project's SDK and flutter SDK is anycodings_dart not matching. download compatible anycodings_dart flutter SDK version set environment anycodings_dart variable in path.

download flutter SDK version from anycodings_dart here https://docs.flutter.dev/development/tools/sdk/releases

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

joy

5

Answers 20 : of how to solve Execution failed for task :app:compileFlutterBuildDebug

run in your terminal

flutter channel stable

flutter upgrade --force

flutter pub cache repair

next,

cd <YOUR APP FOLDER>

flutter clean

AND create a seperate fluter project anycodings_dart using flutter create anycodings_dart <app-name> and include the anycodings_dart generated ios folder and android folder anycodings_dart into your project (obviously you need to anycodings_dart delete the current ios and android anycodings_dart folders) . If you made changes into anycodings_dart these folders consider using version anycodings_dart control

0

2022-09-17T04:24:46+00:00 2022-09-17T04:24:46+00:00Answer Link

raja