When I create a new flutter project the project always failed to run and output the exception that shown in the below
I tried to delete the folder .gradle and rerun the project but I get the same problem how can I solve this problem? Launching lib\main.dart on sdk gphone64 x86 64 in debug mode... Running Gradle task 'assembleDebug'... FAILURE: Build failed with an exception.
Could not resolve all files for configuration ':gradle:detachedConfiguration1'. Could not find org.codehaus.groovy:groovy:?.?.??. Searched in the following locations: - https://dl.google.com/dl/android/maven2/org/codehaus/groovy/groovy/?.?.??/groovy-?.?.??.pom - https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/?.?.??/groovy-?.?.??.pom Required by: project :gradle Could not find org.codehaus.groovy:groovy-ant:?.?.??. Searched in the following locations: - https://dl.google.com/dl/android/maven2/org/codehaus/groovy/groovy-ant/?.?.??/groovy-ant-?.?.??.pom - https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-ant/?.?.??/groovy-ant-?.?.??.pom Required by: project :gradle Could not find org.codehaus.groovy:groovy-astbuilder:?.?.??. Searched in the following locations: - https://dl.google.com/dl/android/maven2/org/codehaus/groovy/groovy-astbuilder/?.?.??/groovy-astbuilder-?.?.??.pom - https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-astbuilder/?.?.??/groovy-astbuilder-?.?.??.pom Required by: project :gradle
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.
This problem because of the new version of Flutter 3.13. I faced this problem and there is a solution:
.gradle
from your system disk at the path of the folder, like: `C:\Users<your user name>’If this doesn't work, do this with the previous steps:
C:\development\flutter\bin
Notice: If the path has any Uppercase or custom symbols, you have to edit the name of the folders in your Windows Explorer, then add the path to environment variable.
Make sure your Regional Format in US from: Settings -> Time & Language -> Region -> Regional Format
delete your .gradle from your system disk the path of the folder like: C:\Users'your user name
Rerun the project again