Error:(1, 0) Plugin with id 'android' not found.

Android Studio編譯時提示錯誤:Error:(1, 0) Plugin with id 'android' not found,是由於gradle文件中沒有定義android tools的版本形成,在項目的build.gradle文件中添加定義版本的語句: java

classpath 'com.android.tools.build:gradle:1.3.0'
這個問題就解決了。注意build.gradle文件是項目下的

最後這個build.gradle文件的完整內容以下: android

// 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.3.0'
    }
}

allprojects {
    repositories {
        jcenter()
    }
}
相關文章
相關標籤/搜索