4

Here i am getting strange issue because my android studio version & Gradle wrapper are updated with new version & still getting below issue:

Gradle sync failed: The android Gradle plugin version 2.3.0-beta1 is too old, please update to the latest version.

To override this check from the command line please set the ANDROID_DAILY_OVERRIDE environment variable to "e7cc61d747b236b3626248d02049407dfb0f8ae3".

Android studio : 2.3 Beta 3

classpath 'com.android.tools.build:gradle:2.3.0-beta1'

gradle-wrapper.properties

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

Please drop your comments if anyone found this.

Chintan Khetiya
  • 15,962
  • 9
  • 47
  • 85

3 Answers3

3

For stable release: You are using the incompatible version between distributionUrl and classpath. Try this the latest gradle distribution for android studio: Android plugin for Gradle, revision 2.3.1

    classpath 'com.android.tools.build:gradle:com.android.tools.build:gradle:2.3.1'
    distributionUrl = https\://services.gradle.org/distributions/gradle-3.5-all.zip

For beta release Instead get preview builds at

For stable release Get the stable release at

Anurag Singh
  • 6,140
  • 2
  • 31
  • 47
2

try to update classpath classpath 'com.android.tools.build:gradle:2.3.0-beta3 instead of beta1

Yassine BELDI
  • 562
  • 5
  • 16
0

Check gradle.properties file. In my case i had a configured proxy.

Anthony
  • 155
  • 2
  • 7