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

来源:互联网 发布:高清网络红外摄像头 编辑:程序博客网 时间:2024/05/17 07:58

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'

    }

}

阅读全文
0 0