In the dependencies section of gradle, will `kapt`...
# kapt
c
In the dependencies section of gradle, will
kapt
always be required? IOW, will it ever transition to using
annotationProcessor
?
Copy code
kapt "com.google.dagger:dagger-compiler:$daggerVersion"
//vs
annotationProcessor "com.google.dagger:dagger-compiler:$daggerVersion"
h
@codeprogression:
kapt
keyword is always be required for using annotation processing in Kotlin. I didn’t test it in Android Project, But I think it’ll be same.
c
Thanks @hazealign. I understand that is the case currently. Just curious if it will change in the future. Assuming no.