- 将插件注释
classpath 'com.android.tools.build:gradle:2.3.1'
// classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
apply plugin: 'com.android.application'
// apply plugin: 'com.neenbedankt.android-apt'
- 将使用
apt
标记的com.google.dagger:dagger-compiler:2.x改用provided
或annotationProcessor
标记
// apt 'com.google.dagger:dagger-compiler:2.10'
// provided 'com.google.dagger:dagger-compiler:2.10'
annotationProcessor 'com.google.dagger:dagger-compiler:2.10'
就这么简单
网友评论