我試圖從GitHub導入項目並在Android Studio上構建/運行它。我收到以下錯誤:Gradle - 無法創建Tooling API實現的實例
"Error:Could not create an instance of Tooling API implementation using the specified Gradle distribution ' https://services.gradle.org/distributions/gradle-2.4-all.zip '."
我曾嘗試以下:
- 無效高速緩存,並重新啓動
- 的gradle中,包裝更改distributionURL /屬性2.5等
- 刪除build.gradle並重新啓動
這些是我從其他幾個帖子在stackoverflow上的想法所以我無法解釋爲什麼我嘗試了這些。 (我對Android Studio非常相當新穎)。
我build.gradle
文件看起來像這樣:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
} }
allprojects {
repositories {
jcenter()
} }
task clean(type: Delete) {
delete rootProject.buildDir }
發佈build.gradle文件 –
我複製並粘貼它。感謝您的幫助 – Maddy
使用classpath'com.android.tools.build:gradle:1.5.0'。 1.5.1不存在。 –