-
If you are looking for help, please confirm the following...
Which mobile framework are you using?Flutter (Dart) Steps to reproduceHi, Why do I get this error in "Install Dependencies"
When my file shows:
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 9 replies
-
Hello @burekas7,
|
Beta Was this translation helpful? Give feedback.
-
@dam-ease This is coming from the Gradle which is bundled with the image, not the use's app
|
Beta Was this translation helpful? Give feedback.
-
facing the same issue any workarround??? |
Beta Was this translation helpful? Give feedback.
Hey @JamesMcIntosh,
We have observed this behavior and have been able to reproduce it in the past. One suggested approach to controlling the Gradle version on any CI/CD system, is to remove
/gradlew
from the.gitignore
file in the Android folder. The Flutter template automatically adds this entry, which can sometimes cause inconsistencies in Gradle versions across different environments.The Gradle daemon starts to speed up subsequent builds. Even if dependencies are resolved, Gradle still needs to manage tasks like compiling native Android code, and generating APK/AAB files.
Regarding why the build doesn’t fail even if a fatal error occurs during dependency installation, it’s likely that…