首页 > 代码库 > 使用不同版本Gradle构建Andorid 出现Gradle version xxxx is required

使用不同版本Gradle构建Andorid 出现Gradle version xxxx is required

出现此情况,应该是使用了gradle wrapper时候,创建工程时使用的gradle版本比当前使用的版本低得情况。此时log会提示 去修改 project_root/gradle/wrapper/gradle-wrapper.properties这个文件中 

distributionUrl=http\://services.gradle.org/distributions/gradle-1.10-all.zip

所对应的gradle版本。但是改完了,还是会出现依赖模块版本比现在版本低得情况。

此时需要修改build.gradle中的


dependencies {

       classpath ‘com.android.tools.build:gradle:0.10.+‘

}


把com.android.tools.build:gradle的版本号改高

最新得版本号,参考

http://tools.android.com/tech-docs/new-build-system


之后使用project_root下得gradlew命令,重新rebuild


******************************************

更多交流就在Q群 107584987

Coding Your Life

******************************************