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
Annotation processing seems to be disabled for the project X
With the newer gradle versions, it is enough to type these lines into the app's build.gradle's dependencies block:`
compile "org.projectlombok:lombok:1.16.16" annotationProcessor "org.projectlombok:lombok:1.16.16"
Sync the project with the gradle and it will work.