When I today update Android Studio it write: Minimum supported Gradle version is 3.3. Current version is 3.2 how can I solve this problem?
Here is my build.gradle
you need to download the latest version from https://gradle.org/releases after that go to file/project structure/project and put the new version in gradle version
Update Android Studio and Gradle. Changing the respective updated gradle version in build.gradle file worked for me.
In my case, I was missing the setting.gradle
file.
Open gradle-wrapper.properties
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
change it to
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
About Android Studio Gradle plugin version and Required Gradle version, you can see more detailed answer here: What is real Android Studio Gradle Version?
For each version of this Gradle plugin, it requires a minimum Gradle version as listed on below table
(Reference page:gradle-plugin#updating-gradle).
When you update Android Studio, you may receive a prompt to also update Gradle to the latest available version.
For example, Android Gradle Plugin version 3.1.0+ requires a minimal gradle version 4.4.
You can be configured via Android Studio File -> Project Structure -> Project. See below:
Or you can manually modify the file gradle/wrapper/gradle-wrapper.properties
. For example:
distributionUrl = https\://services.gradle.org/distributions/gradle-4.6-all.zip