Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Minimum supported gradle version is 4.4. Current version is 4.1

I have been looking around for a fix for this issue. The fix that I found is to update the gradle-wrapper.properties file with the new version. This was automatically updated to: gradle-4.4-all.zip when I recently updated my Android studio. However, I am still having the same issue is as if the project is not recognizing I have 4.4 version added. Am I missing another location where to add this? I verified on my project structure as well that gradle version is 4.4. Any ideas would be great?

like image 825
paul590 Avatar asked Nov 07 '22 06:11

paul590


1 Answers

If you get this error working with Flutter, make sure you are looking within the correct folder for the config. You have 2 gradle folders in the root of your app. I wasted so much time until I discovered this because I'm new to Flutter/Android Studio.

MyApp
  |-Android
      |-.gradle (Not this one)
      |-app
      |-gradle <-- THIS ONE
  |-ios
  |-lib
like image 127
Post Impatica Avatar answered Nov 14 '22 23:11

Post Impatica