android导入eclipse项目后,gradle版本引起的问题.md
android导入eclipse项目后,gradle版本引起的问题
1.Error:The project is using an unsupported version of the Android Gradle plug-in (0.12.2). The recommended version is 1.2.3.
根据提示,在build.gradle 把
dependencies {
classpath ‘com.android.tools.build:gradle:0.12.+‘
}
修改为
dependencies {
classpath ‘com.android.tools.build:gradle:1.2.3‘
}
2.上面修改后会出现如下错误:Error:Unable to load class ‘org.codehaus.groovy.runtime.typehandling.ShortTypeHandling’.Possible causes for this unexpected error include:You are using JDK version ‘java version “1.7.0_71”’. Some versions of JDK 1.7 (e.g. 1.7.0_10) may cause class loading errors in Gradle.Please update to a newer version (e.g. 1.7.0_67).
明明用的就是jdk1.7.0_71[比1.7.0_67还新] 却提示不对,问题起始不在jdk这而是 gradle-wrapper.properties distributionUrl=http://services.gradle.org/distributions/gradle-1.12-all.zip 用的是jdk1.7.0.10
把 distributionUrl=http://services.gradle.org/distributions/gradle-1.12-all.zip
修改为 distributionUrl=https://services.gradle.org/distributions/gradle-2.2.1-all.zip
ok ,经过上面两步,从studio导入eclipse项目的正常使用。
转载请注明 来自 http://blog.csdn.net/u011570979/article/details/45824073
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。