美文网首页
ERROR: android-apt plugin is inc

ERROR: android-apt plugin is inc

作者: 爺珍爱那颗心 | 来源:发表于2020-01-31 13:57 被阅读0次

错误原因

  • AndroidStudio在升级到3.0版本以后,将apt修改为annotationProcessor了。

解决方案

  • 把module/build.gradle下的apt插件应用全部注释掉
apply plugin: 'com.android.application'
//apply plugin: 'android-apt'
  • 把dependencies下的apt全部改为annotationProcessor
dependencies {
    annotationProcessor 'com.google.dagger:dagger-compiler:2.0.2' 
}
  • 把project/build.gradle中的apt插件声明注释
buildscript {
    repositories {
        google()
        jcenter()
        
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.2'
       // classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' 
    }
}

到这里点击Sync Now让项目重新构建即可,如下图

点击Sync Now
马上就要开工了,为武汉加油,愿疫情早日解除,大家出门也要记得戴好口罩,勤洗手呀!

相关文章

网友评论

      本文标题:ERROR: android-apt plugin is inc

      本文链接:https://www.haomeiwen.com/subject/hcegthtx.html