codeprogression
06/13/2017, 4:02 PMkapt always be required? IOW, will it ever transition to using annotationProcessor?
kapt "com.google.dagger:dagger-compiler:$daggerVersion"
//vs
annotationProcessor "com.google.dagger:dagger-compiler:$daggerVersion"hazealign
06/13/2017, 4:37 PMkapt 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.codeprogression
06/13/2017, 4:52 PM