注解处理器使用
一. 背景
注解处理器,可以用在编译期 或者运行期自动生成代码。
1. annotationProcessor
如果是 Java代码,可以使用 annotationProcessor 启用注解处理器
dependencies {
annotationProcessor project(':xx')
annotationProcessor 'org.greenrobot:eventbus-annotation-processor:3.1.1'
}
如果使用 IDEA 需要 手动去 编译设置那边开启
Make sure that you have at least IntelliJ 2018.2.x (needed since support for annotationProcessors from the maven-compiler-plugin is from that version). Enable annotation processing in IntelliJ (Build, Execution, Deployment -> Compiler -> Annotation Processors)
2. kapt
如果注解要用在 Kolint 上面,那么需要使用 kapt
参考 官方设置 (https://kotlinlang.org/docs/kapt.html#using-in-gradle)
- 引入 plugin
- 使用apt
dependencies {
kapt 'groupId:artifactId:version'
}
//可选
kapt {
arguments {
arg("key", "value")
}
}
kapt 'groupId:artifactId:version'