Error:android-apt plugin is incompatible with the Android Gradle plugin. Please use 'annotationProc

##Android 编译报错:

Error:android-apt plugin is incompatible with the Android Gradle plugin. Please use 'annotationProc

一、注释掉module的buid.gradle下

// 应用插件

//apply plugin: 'com.neenbedankt.android-apt'

二、修改dependencies模块(注释掉了一句,添加了一句声明进程的方式):

compile 'com.google.dagger:dagger:2.12'
//apt 'com.google.dagger:dagger-compiler:2.12'
annotationProcessor 'com.google.dagger:dagger-compiler:2.12'

三、无关紧要的一步,我就是看着不爽而已,在项目的build.gradle下面注释掉一句话

你可能感兴趣的:([Android])