Error:Execution failed for task \':laMusique2May2016:javaPreCompileRelease\'. > Annotation processors must be explicitly declared now. The following dependencies on
Even i had the same problem and finally i solved my problem by adding this to app level gradle file
android{ .... defaultConfig{ .... javaCompileOptions { annotationProcessorOptions { includeCompileClasspath true } } } buildTypes { ... }
hope its solved someone's problem