Gradle error: Minimum supported Gradle version is 3.3. Current version is 3.2

后端 未结 17 1853
萌比男神i
萌比男神i 2020-11-27 04:26

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

17条回答
  •  春和景丽
    2020-11-27 05:04

    I changes only two points

    Obviously they were according to the version of the versions that it has, otherwise they would have to download them

    • buil.gradle(Project)

      dependencies {
             classpath 'com.android.toolsg.build:gradle:2.3.2' 
             ..
      }
      
    • gradle.wrapper.properties

      ...
      distributionUrl=https://services.gradle.org/distributions/gradle-3.3-all.zip

提交回复
热议问题