需要把Gradle 插件版本升级到 2.2(含)以上
- 修改根目录的 build.gradle 中的gradle版本,并移除android-apt
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
//remove android-apt
//classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}
- 移除对应Module的build.gradle中对android-apt配置
//remove
//apply plugin: 'com.neenbedankt.android-apt'
...
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.4.0'
// update apt to annotationProcessor
//apt 'com.google.dagger:dagger-compiler:2.2'
annotationProcessor 'com.google.dagger:dagger-compiler:2.2'
compile 'com.google.dagger:dagger:2.2
}