我发现旧版本的引用,但不是最新版本。我将Android Studio更新为0.4.3并创建了一个新项目。使用以下内容立即失败:
Could not create an instance of Tooling API implementation using the specified Gradle distribution 'http://services.gradle.org/distributions/gradle-1.10-all.zip'.: Could not create an instance of Tooling API implementation using the specified Gradle distribution 'http://services.gradle.org/distributions/gradle-1.10-all.zip'.
com.intellij.openapi.externalSystem.model.ExternalSystemException: Could not create an instance of Tooling API implementation using the specified Gradle distribution 'http://services.gradle.org/distributions/gradle-1.10-all.zip'.
at org.jetbrains.plugins.gradle.service.project.GradleExecutionHelper.execute(GradleExecutionHelper.java:185)
我已经尝试安装JDK 1.7并将我的JAVA HOME设置为(之前是1.6),但是发生了同样的错误。我的GradleWrapper.properties是:
#Wed Apr 10 15:27:10 PDT 2013
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.10-all.zip
有什么想法吗?
答案 0 :(得分:2)
您需要确保使用的是正确版本的Android Gradle插件。对于Android Studio 0.4.3,它是0.8.X系列。在 build.gradle 中将其指定为:
dependencies {
classpath 'com.android.tools.build:gradle:0.8.+'
}
这可能位于顶级 build.gradle 或模块中的那个;我们放置它的位置在Android Studio的更高版本中新创建的项目中已更改。