The android gradle plugin version 2.3.0-beta4 is too old, please update to the latest version

版权声明:文章转载请标明出处,谢谢! https://blog.csdn.net/huang3513/article/details/75258658

错误日志:

Error:(1, 0) The android gradle plugin version 2.3.0-beta4 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 “76beb1b8c50dcf3e5da4e1d8222a47fc10325716”

解决办法:

dependencies {
//        classpath 'com.android.tools.build:gradle:2.3.0-beta4'(解决前)
        classpath 'com.android.tools.build:gradle:2.3.0+'(解决后)
    }

将版本改低 比如写成2.3.0+ 这样目前没发现有什么问题

猜你喜欢

转载自blog.csdn.net/huang3513/article/details/75258658