Error:Execution failed for task \':laMusique2May2016:javaPreCompileRelease\'.
> Annotation processors must be explicitly declared now. The following dependencies on
For me, this issue happened because jitpack
wasn't placed as the last entry in root grade.
allprojects {
repositories {
// ... other repositories
maven { url "https://jitpack.io" }
}
}
The solution was taken from @hotchemi comment in https://github.com/permissions-dispatcher/PermissionsDispatcher/issues/535#issuecomment-432190926