Plugin with id 'android-apt' not found.

Error:Error:(2, 0) Plugin with id 'android-apt' not found.

原因:导入Moudle时而未导入Project中的相关配置

解决 :在project的gradle文件中配置如下:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.2'
        //添加这行代码
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
        classpath 'org.greenrobot:greendao-gradle-plugin:3.2.0'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}
拓展:其他not found相关问题,度可以用这方法解决。

你可能感兴趣的:(【Android异常】)