天天看點

Android-- Plugin with id 'com.android.application' not found

Android studio

      Plugin with id 'com.android.application' not found 

解決方案:打開 [項目檔案夾]\app\build.gradle 檔案

在檔案末尾添加

buildscript {

    repositories {

        mavenCentral()

    }

    dependencies {

        classpath 'com.android.tools.build:gradle:1.0.0'

    }

}