I\'m using Android Studio 2.2 Preview 7, and the Lombok plugin suddenly started saying:
Annotation processing seems to be disabled for the project X
, and provid
The setup guide from the lombok website(lombok set up for android) says we should do two things
1, install the lombok plugin
2, add gradle dependencies
dependencies { compileOnly 'org.projectlombok:lombok:1.18.6' annotationProcessor 'org.projectlombok:lombok:1.18.6' }
But for me the plugin causes the problem to occur. After I disabled the plugin the error went away and lombok still works.