android-apt plugin is incompatib

2018-09-05  本文已影响64人  Android14k纯金大佬

意思是Android APT插件与Android Gealle插件不兼容. 

1,首先把项目下的build.gradle中的classpath ‘com.neenbedankt.gradle.plugins:android-apt:1.8’删掉

2,把module下面的build.gradle最上面引入的插件删掉,不管是下面这两个中的哪一个,都删掉

    apply plugin: ‘com.neenbedankt.android-apt’

    apply plugin: ‘android-apt

3,在module下的build.gradle中的依赖修改为:(只需要这两个)

// butterknife 组件注入

implementation'com.jakewharton:butterknife:8.6.0'

annotationProcessor'com.jakewharton:butterknife-compiler:8.6.0'

上一篇下一篇

猜你喜欢

热点阅读